From f06b58a8bd4f0529d531df85fce303bf2b8f5d9d Mon Sep 17 00:00:00 2001 From: nickysn Date: Tue, 2 Apr 2013 13:25:03 +0000 Subject: [PATCH] * always enable smartlinking for the tests themselves when running the testsuite for msdos git-svn-id: branches/i8086@24131 - --- tests/Makefile | 3 +++ tests/Makefile.fpc | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/tests/Makefile b/tests/Makefile index 08d3d3777d..8952394210 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -2008,6 +2008,9 @@ endif endif endif endif +ifeq ($(TEST_OS_TARGET),msdos) +override TEST_OPT+=-XX +endif TEST_OUTPUTDIR=output/$(TEST_TARGETSUFFIX) C_SUBDIR=$(TEST_OS_TARGET)/$(TEST_CPU_TARGET) ifneq ($(DATE),__missing_command_DATE) diff --git a/tests/Makefile.fpc b/tests/Makefile.fpc index 206fe11758..5921aaaa69 100644 --- a/tests/Makefile.fpc +++ b/tests/Makefile.fpc @@ -95,6 +95,11 @@ endif endif endif +# always enable smartlinking for msdos +ifeq ($(TEST_OS_TARGET),msdos) +override TEST_OPT+=-XX +endif + # Target dir where the ppu and binaries are created TEST_OUTPUTDIR=output/$(TEST_TARGETSUFFIX) C_SUBDIR=$(TEST_OS_TARGET)/$(TEST_CPU_TARGET)