wtf
This commit is contained in:
@@ -3,7 +3,7 @@ CC = gcc
|
|||||||
CC_DARWIN = g++-6
|
CC_DARWIN = g++-6
|
||||||
CC_WIN = x86_64-w64-mingw32-gcc-posix
|
CC_WIN = x86_64-w64-mingw32-gcc-posix
|
||||||
CFLAGS_DARWIN = -std=c++11 -arch x86_64 -I/usr/local/Cellar/gcc\@6/6.4.0_2/include/c++/6.4.0/ -I../../depends/$(shell echo `../..//depends/config.guess`/include) -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -c -Wl,-undefined -Wl,dynamic_lookup -dynamiclib
|
CFLAGS_DARWIN = -std=c++11 -arch x86_64 -I/usr/local/Cellar/gcc\@6/6.4.0_2/include/c++/6.4.0/ -I../../depends/$(shell echo `../..//depends/config.guess`/include) -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -c -Wl,-undefined -Wl,dynamic_lookup -dynamiclib
|
||||||
CFLAGS = -std=c++11 -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -shared -c
|
CFLAGS = -std=c++11 -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I../../depends/x86_64-unknown-linux-gnu/include -I.. -I. -fPIC -shared -c
|
||||||
CFLAGS_WIN = -std=c++11 -I../../depends/$(shell echo `../..//depends/config.guess`/include) -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -shared -c
|
CFLAGS_WIN = -std=c++11 -I../../depends/$(shell echo `../..//depends/config.guess`/include) -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -shared -c
|
||||||
DEBUGFLAGS = -O0 -D _DEBUG
|
DEBUGFLAGS = -O0 -D _DEBUG
|
||||||
RELEASEFLAGS = -O2 -D NDEBUG -combine -fwhole-program
|
RELEASEFLAGS = -O2 -D NDEBUG -combine -fwhole-program
|
||||||
|
|||||||
@@ -42,21 +42,16 @@ if [ "x$*" = 'x--help' ]
|
|||||||
then
|
then
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
$0 --help
|
$0 --help
|
||||||
Show this help message and exit.
|
Show this help message and exit.
|
||||||
|
|
||||||
$0 [ --enable-lcov || --disable-tests ] [ --disable-mining ] [ --enable-proton ] [ --disable-libs ] [ MAKEARGS... ]
|
$0 [ --enable-lcov || --disable-tests ] [ --disable-mining ] [ --enable-proton ] [ --disable-libs ] [ MAKEARGS... ]
|
||||||
Build Zcash and most of its transitive dependencies from
|
Build Zcash and most of its transitive dependencies from
|
||||||
source. MAKEARGS are applied to both dependencies and Zcash itself.
|
source. MAKEARGS are applied to both dependencies and Zcash itself.
|
||||||
|
|
||||||
If --enable-lcov is passed, Zcash is configured to add coverage
|
If --enable-lcov is passed, Zcash is configured to add coverage
|
||||||
instrumentation, thus enabling "make cov" to work.
|
instrumentation, thus enabling "make cov" to work.
|
||||||
If --disable-tests is passed instead, the Zcash tests are not built.
|
If --disable-tests is passed instead, the Zcash tests are not built.
|
||||||
|
|
||||||
If --disable-mining is passed, Zcash is configured to not build any mining
|
If --disable-mining is passed, Zcash is configured to not build any mining
|
||||||
code. It must be passed after the test arguments, if present.
|
code. It must be passed after the test arguments, if present.
|
||||||
|
|
||||||
If --enable-proton is passed, Zcash is configured to build the Apache Qpid Proton
|
If --enable-proton is passed, Zcash is configured to build the Apache Qpid Proton
|
||||||
library required for AMQP support. This library is not built by default.
|
library required for AMQP support. This library is not built by default.
|
||||||
It must be passed after the test/mining arguments, if present.
|
It must be passed after the test/mining arguments, if present.
|
||||||
@@ -101,12 +96,23 @@ eval "$MAKE" --version
|
|||||||
as --version
|
as --version
|
||||||
ld -v
|
ld -v
|
||||||
|
|
||||||
|
#BUILD CCLIB
|
||||||
|
|
||||||
|
WD=$PWD
|
||||||
|
cd src/cc
|
||||||
|
echo $PWD
|
||||||
|
|
||||||
|
if make "$@"; then
|
||||||
|
echo CCLIB BUILD SUCCESSFUL
|
||||||
|
else
|
||||||
|
echo CCLIB BUILD FAILED
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $WD
|
||||||
|
|
||||||
HOST="$HOST" BUILD="$BUILD" NO_PROTON="$PROTON_ARG" "$MAKE" "$@" -C ./depends/ V=1
|
HOST="$HOST" BUILD="$BUILD" NO_PROTON="$PROTON_ARG" "$MAKE" "$@" -C ./depends/ V=1
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
|
|
||||||
CONFIG_SITE="$PWD/depends/$HOST/share/config.site" ./configure "$HARDENING_ARG" "$LCOV_ARG" "$TEST_ARG" "$MINING_ARG" "$PROTON_ARG" $CONFIGURE_FLAGS CXXFLAGS='-g'
|
CONFIG_SITE="$PWD/depends/$HOST/share/config.site" ./configure "$HARDENING_ARG" "$LCOV_ARG" "$TEST_ARG" "$MINING_ARG" "$PROTON_ARG" $CONFIGURE_FLAGS CXXFLAGS='-g'
|
||||||
#BUILD CCLIB
|
|
||||||
cd src/cc/
|
|
||||||
./makecclib
|
|
||||||
cd ../../
|
|
||||||
"$MAKE" "$@" V=1
|
"$MAKE" "$@" V=1
|
||||||
|
|||||||
Reference in New Issue
Block a user