diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-09-21 18:33:44 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-09-21 18:33:44 +0800 |
commit | be1211d42ef2098015eda3a9f09992b9cfddba40 (patch) | |
tree | f58f65440258759927b84b2ccac0b653e2e2c4ac | |
parent | ac4366e85ed9043cfd7168c3e929183596be18d7 (diff) | |
download | tangerine-mcl-be1211d42ef2098015eda3a9f09992b9cfddba40.tar.gz tangerine-mcl-be1211d42ef2098015eda3a9f09992b9cfddba40.tar.zst tangerine-mcl-be1211d42ef2098015eda3a9f09992b9cfddba40.zip |
add GMP_DIR path
-rw-r--r-- | common.mk | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -17,6 +17,9 @@ ifeq ($(UNAME_S),Darwin) OPENSSL_DIR?=/usr/local/opt/openssl CFLAGS+=-I$(OPENSSL_DIR)/include LDFLAGS+=-L$(OPENSSL_DIR)/lib + GMP_DIR?=/usr/local/opt/gmp + CFLAGS+=-I$(GMP_DIR)/include + LDFLAGS+=-L$(GMP_DIR)/lib else LIB_SUF=so endif |