mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
ab951175c0
libcrypto provides certain optimized assembler functions which unfortunatly are non-pic. Therefore this asm code is removed and libcrypto is build with -DOPENSSL_NO_ASM. Because the asm code is not needed anymore, its generation is also removed from openssl.mk. import-libssl.mk was also added because it is essential for building programs which depend on libssl. Fixes #291. Fixes #294.
11 lines
259 B
Makefile
11 lines
259 B
Makefile
REP_INC_DIR += include/openssl
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
TARGET_CPUARCH=x86_32
|
|
else ifeq ($(filter-out $(SPECS),x86_64),)
|
|
TARGET_CPUARCH=x86_64
|
|
endif
|
|
|
|
# include architecture specific opensslconf.h
|
|
REP_INC_DIR += src/lib/openssl/$(TARGET_CPUARCH)
|