From e6cc4025e1908bf75fcd469f3dbd95d6db289fc3 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Wed, 10 Mar 2021 16:43:09 +0900 Subject: [PATCH] [python] LD_LIBRARY_PATH is necessary for linux --- ffi/python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffi/python/Makefile b/ffi/python/Makefile index 9d46068..85d4797 100644 --- a/ffi/python/Makefile +++ b/ffi/python/Makefile @@ -3,7 +3,7 @@ include ../../common.mk SHE384_256_SLIB=libmclshe384_256.$(LIB_SUF) she_test: ../../lib/$(SHE384_256_SLIB) - cd ../../lib && python3 ../ffi/python/she.py + cd ../../lib && env LD_LIBRARY_PATH=./ python3 ../ffi/python/she.py ../../lib/$(SHE384_256_SLIB): make -C ../../ lib/$(SHE384_256_SLIB)