diff options
| author | J08nY | 2024-05-07 16:46:49 +0200 |
|---|---|---|
| committer | J08nY | 2024-05-07 16:46:49 +0200 |
| commit | aeaeef42697153a5b1cb9b0b5a64f9495af83157 (patch) | |
| tree | c30d81e37496ab55a7a306064abbabed3eb8a320 | |
| parent | bcd5077163d34e34d490f26875772fa62a4ee068 (diff) | |
| download | ECTester-aeaeef42697153a5b1cb9b0b5a64f9495af83157.tar.gz ECTester-aeaeef42697153a5b1cb9b0b5a64f9495af83157.tar.zst ECTester-aeaeef42697153a5b1cb9b0b5a64f9495af83157.zip | |
Fix OpenSSL build with signals.
| -rw-r--r-- | standalone/src/main/resources/cz/crcs/ectester/standalone/libs/jni/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/src/main/resources/cz/crcs/ectester/standalone/libs/jni/Makefile b/standalone/src/main/resources/cz/crcs/ectester/standalone/libs/jni/Makefile index dca660f..2354194 100644 --- a/standalone/src/main/resources/cz/crcs/ectester/standalone/libs/jni/Makefile +++ b/standalone/src/main/resources/cz/crcs/ectester/standalone/libs/jni/Makefile @@ -84,7 +84,7 @@ cpp_utils.o: cpp_utils.cpp openssl: openssl_provider.so openssl_provider.so: openssl.o c_utils.o | lib_timing.so lib_signals.so - $(CC) $(LFLAGS) -o $@ -Wl,-rpath,'$$ORIGIN/lib' $^ -L. $(shell pkg-config --libs openssl) -l:lib_timing.so + $(CC) $(LFLAGS) -o $@ -Wl,-rpath,'$$ORIGIN/lib' $^ -L. $(shell pkg-config --libs openssl) -l:lib_timing.so -l:lib_signals.so openssl.o: openssl.c $(CC) $(shell pkg-config --cflags openssl) $(CFLAGS) -c $< |
