Hi here a little change proposal to fix haproxy at runtime in this platform. Cheers.
From 9232c20f0775def3e8aded9d4a1f534b974b2d0a Mon Sep 17 00:00:00 2001 From: David Carlier <[email protected]> Date: Sat, 19 Jun 2021 14:42:43 +0000 Subject: [PATCH] MINOR: fixes linkage for Haiku.
At runtime, the haiku's loader displays `could not resolve symbol: __start_i_STG_ALLOC` thus using linker setting fallback. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b25c9ad52..4b0676767 100644 --- a/Makefile +++ b/Makefile @@ -343,7 +343,7 @@ endif # Haiku ifeq ($(TARGET),haiku) TARGET_LDFLAGS = -lnetwork - set_target_defaults = $(call default_opts,USE_POLL USE_TPROXY) + set_target_defaults = $(call default_opts,USE_POLL USE_TPROXY USE_OBSOLETE_LINKER) endif # For linux >= 2.6.28 and glibc -- 2.30.2

