Skip to content

Commit cd8022e

Browse files
committed
Another recipe for mayhem, II.
1 parent 87b55c2 commit cd8022e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

examples/tor_and_its_dependencies/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ TOR_INSTALL=${THISDIR}/install/tor
3131
LLVMCC=gclang
3232
LLVMGET=get-bc
3333

34-
BITCODE = tor.bc libz.a.bc libssl.a.bc libevent.a.bc
34+
BITCODE = libz.a.bc libssl.a.bc libevent.a.bc tor.bc
3535

3636
all: ${BITCODE}
3737

@@ -45,7 +45,7 @@ ${TOR_INSTALL}/bin/tor: ${TOR}
4545
cd ${TOR}; CC=${LLVMCC} ./configure --prefix=${TOR_INSTALL}; make && make install
4646

4747
tor.bc: ${TOR_INSTALL}/bin/tor
48-
cd ${TOR_INSTALL}; ${LLVMGET} tor; mv tor.bc ${THISDIR}
48+
cd ${TOR_INSTALL}/bin; ${LLVMGET} tor; mv tor.bc ${THISDIR}
4949

5050

5151
${ZLIB_TARBALL}:

shared/constants.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ package shared
4343
// May 2 2018 handleArchives rewritten to handle multiple occurrences of files with the same name.
4444
// corresponds with wllvm 1.2.0. Gonna try and keep them in synch.
4545
// 1.2.1 May 13th 2018 -fsanitize= needs to be compile AND link.
46-
// 1.2.2 May 24th 2018 Fix extracting from archives on darwin, plus travis build for both linux and darwin.
46+
// 1.2.2 June 1st 2018 Fix extracting from archives on darwin, plus travis build for both linux and darwin,
47+
// a few ittle fixes from building tor and it's dependencies.
4748

4849
//
4950
const gllvmVersion = "1.2.2"
50-
const gllvmReleaseDate = "May 24 2018"
51+
const gllvmReleaseDate = "June 1st 2018"
5152

5253
const osDARWIN = "darwin"
5354
const osLINUX = "linux"

0 commit comments

Comments
 (0)