Skip to content
Snippets Groups Projects
Commit a395563f authored by Thorsten Glaser's avatar Thorsten Glaser Committed by Hauke Mehrtens
Browse files

build: fix libressl build on x32 (amd64ilp32) host


disable use of assembly code since x32 gets misdetected as amd64

Signed-off-by: default avatarThorsten Glaser <tg@mirbsd.org>
parent 79b766d0
No related branches found
No related tags found
No related merge requests found
...@@ -26,4 +26,8 @@ include $(INCLUDE_DIR)/host-build.mk ...@@ -26,4 +26,8 @@ include $(INCLUDE_DIR)/host-build.mk
HOST_CONFIGURE_ARGS += --disable-shared HOST_CONFIGURE_ARGS += --disable-shared
HOST_CFLAGS += $(FPIC) HOST_CFLAGS += $(FPIC)
ifeq ($(GNU_HOST_NAME),x86_64-linux-gnux32)
HOST_CONFIGURE_ARGS += --disable-asm
endif
$(eval $(call HostBuild)) $(eval $(call HostBuild))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment