From 931e726827de796e388b6cd874bc1ba9c96ddce7 Mon Sep 17 00:00:00 2001 From: nishi Date: Thu, 20 Jun 2024 09:02:56 +0000 Subject: [PATCH] fix os/2 build git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@401 d4a5a174-5a4a-5b4b-b672-37683c10d7d5 --- Makefiles/Platforms/os2.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefiles/Platforms/os2.mk b/Makefiles/Platforms/os2.mk index 1e88d22..2b87246 100644 --- a/Makefiles/Platforms/os2.mk +++ b/Makefiles/Platforms/os2.mk @@ -3,7 +3,10 @@ WATCOM_PLATFORM=os2 include Makefiles/Platforms/watcom.mk EXEC_SUFFIX=.exe +STACK_SIZE = 8192 RCLI= SERVER= +CFLAGS += -march=i86 -mstack-size=$(STACK_SIZE) +LDFLAGS += -march=i86 -mstack-size=$(STACK_SIZE) SERVER_MODULE = hayes.o RCLI_MODULE = hayes.o -- 2.43.0