use passL in makefile so it works on macs (#19)
This commit is contained in:
parent
427ea1d8dc
commit
5a0fd2d762
2
Makefile
2
Makefile
|
@ -107,7 +107,7 @@ $(STATUSGO): | deps
|
||||||
|
|
||||||
libstatuslib: | $(STATUSGO)
|
libstatuslib: | $(STATUSGO)
|
||||||
echo -e $(BUILD_MSG) "$@" && \
|
echo -e $(BUILD_MSG) "$@" && \
|
||||||
$(ENV_SCRIPT) nim c $(NIM_PARAMS) $(NIM_EXTRA_PARAMS) -o:build/$@.$(LIBSTATUS_EXT).0 -d:ssl --app:lib --noMain --header --nimcache:nimcache/libstatuslib statuslib.nim && \
|
$(ENV_SCRIPT) nim c $(NIM_PARAMS) $(NIM_EXTRA_PARAMS) --passL:"-L$(STATUSGO_LIBDIR)" --passL:"-lstatus" -o:build/$@.$(LIBSTATUS_EXT).0 -d:ssl --app:lib --noMain --header --nimcache:nimcache/libstatuslib statuslib.nim && \
|
||||||
rm -f build/$@.$(LIBSTATUS_EXT) && \
|
rm -f build/$@.$(LIBSTATUS_EXT) && \
|
||||||
ln -s $@.$(LIBSTATUS_EXT).0 build/$@.so && \
|
ln -s $@.$(LIBSTATUS_EXT).0 build/$@.so && \
|
||||||
cp nimcache/libstatuslib/*.h build/. && \
|
cp nimcache/libstatuslib/*.h build/. && \
|
||||||
|
|
Loading…
Reference in New Issue