Skip to content

Commit 0fd10f6

Browse files
[Loopring36]Fix a build issue for Macos (#1624)
* [Loopring36]Fix a build issue for Macos * update
1 parent 720c225 commit 0fd10f6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/loopring_v3/Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ else
1212
detected_OS := $(shell uname -s)
1313
ifeq ($(detected_OS),Darwin)
1414
DLL_EXT := .dylib
15-
export LD_LIBRARY_PATH := /usr/local/opt/openssl/lib:/usr/local/opt/gmp/lib:"$(LD_LIBRARY_PATH)"
16-
export CPATH := /usr/local/opt/openssl/include:/usr/local/opt/gmp/include:/usr/local/opt/boost/include:"$(CPATH)"
17-
export PKG_CONFIG_PATH := /usr/local/opt/openssl/lib/pkgconfig:"$(PKG_CONFIG_PATH)"
15+
export LD_LIBRARY_PATH := /usr/local/opt/openssl/lib:/usr/local/opt/gmp/lib:$(LD_LIBRARY_PATH)
16+
export LIBRARY_PATH := /usr/local/opt/gmp/lib:$(LIBRARY_PATH)
17+
export CPATH := /usr/local/opt/openssl/include:/usr/local/opt/gmp/include:/usr/local/opt/boost/include:$(CPATH)
18+
export PKG_CONFIG_PATH := /usr/local/opt/openssl/lib/pkgconfig:$(PKG_CONFIG_PATH)
1819
CMAKE_TYPE := cmake-release
1920
else
2021
DLL_EXT := .so

0 commit comments

Comments
 (0)