You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
496 B
14 lines
496 B
#!/bin/bash
|
|
cd secp256k1; ./m_unix; cd ..
|
|
cd ../crypto777; ./m_LP; cd ../iguana
|
|
|
|
nanomsg_lib="-lnanomsg"
|
|
|
|
# Build static libnanomsg on macOS
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
./build_static_nanomsg.sh
|
|
nanomsg_lib="../OSlibs/osx/$(uname -m)/libnanomsg-static.a"
|
|
fi
|
|
|
|
rm marketmaker
|
|
gcc -g -o marketmaker -DNOTETOMIC -I../crypto777 exchanges/mm.c ../crypto777/cJSON.c mini-gmp.c keccak.c groestl.c segwit_addr.c secp256k1.o ../agents/libcrypto777.a $nanomsg_lib -lcurl -lpthread -lm -lsodium
|
|
|