From 39f365d25f365786cd98741f3148db9fafb9eb33 Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 5 Aug 2005 15:27:03 +0000 Subject: [PATCH] linker script is defined using -T, not -Wl git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4207 212acab6-be3b-0410-9dea-997c60f758d6 --- SCons/Config/gnu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCons/Config/gnu b/SCons/Config/gnu index 659eaea2..99601578 100644 --- a/SCons/Config/gnu +++ b/SCons/Config/gnu @@ -102,7 +102,7 @@ util_env.Append(LINKFLAGS = '$MAP_FLAG') # generate map file # sure the sections will be written in the correct order. # -stub_env.Append(LINKFLAGS = '-Wl,%s' % File('linker_script').abspath) +stub_env.Append(LINKFLAGS = '-T %s' % File('linker_script').abspath) # # GCC requires some functions from the CRT to be present, if certain