2006-04-05 H.J. Lu <hongjiu.lu@intel.com>
[deliverable/binutils-gdb.git] / ld / genscripts.sh
CommitLineData
252b5132
RH
1#!/bin/sh
2# genscripts.sh - generate the ld-emulation-target specific files
3#
8fbdf3ab
AM
4# Usage: genscripts_extra.sh \
5# srcdir \
6# libdir \
7# exec_prefix \
8# host \
9# target \
10# target_alias \
11# default_emulation \
12# native_lib_dirs \
13# use_sysroot \
14# this_emulation \
15# optional:
16# tool_dir \
17# customizer_script
252b5132
RH
18#
19# Sample usage:
8fbdf3ab
AM
20#
21# genscripts_extra.sh \
22# /sources/ld \
23# /usr/local/lib \
24# /usr/local \
25# sparc-sun-sunos4.1.3 \
26# sparc-sun-sunos4.1.3 \
27# sparc-sun-sunos4.1.3 \
28# sun4 \
29# "" \
30# no \
31# sun3 \
32# sparc-sun-sunos4.1.3 \
33# sparc.sh
34#
35# produces the linker scripts:
36#
37# sun3.x [default linker script]
38# sun3.xbn [used when the linker is invoked with "-N"]
39# sun3.xn [used when the linker is invoked with "-n"]
40# sun3.xr [used when the linker is invoked with "-r"]
41# sun3.xu [used when the linker is invoked with "-Ur"]
42# and maybe:
43# sun3.xc [used when the linker is invoked with "-z combreloc"]
44# sun3.xsc [used when the linker is invoked with "--shared"]
45# sun3.xdc [used when the linker is invoked with "-pie"]
46#
47# It also produced the C source file:
48#
49# em_sun3.c
50#
51# which is then compiled into the linker.
52#
53# The linker scripts are created by running the shell script
54# /sources/ld/emulparams/sparc.sh to set the value of ${SCRIPT_NAME}
55# (and any other variables it wants to). ${SCRIPT_NAME} is then
56# invoked with a variable called ${LD_FLAG} to tell it which version
57# of the linker script to create.
58
252b5132
RH
59
60srcdir=$1
61libdir=$2
d9fc3714
AM
62exec_prefix=$3
63host=$4
64target=$5
65target_alias=$6
66EMULATION_LIBPATH=$7
67NATIVE_LIB_DIRS=$8
9c8ebd6a 68use_sysroot=$9
d9fc3714 69shift 9
9c8ebd6a 70EMULATION_NAME=$1
8fbdf3ab
AM
71TOOL_LIB=$2
72CUSTOMIZER_SCRIPT=$3
73
74# Can't use ${TOOL_LIB:-$target_alias} here due to an Ultrix shell bug.
75if [ "x${TOOL_LIB}" = "x" ] ; then
d9fc3714
AM
76 tool_lib=${exec_prefix}/${target_alias}/lib
77else
8fbdf3ab
AM
78 tool_lib=${exec_prefix}/${TOOL_LIB}/lib
79fi
80
81if [ "x${CUSTOMIZER_SCRIPT}" = "x" ] ; then
82 CUSTOMIZER_SCRIPT=${EMULATION_NAME}
d9fc3714 83fi
8fbdf3ab 84CUSTOMIZER_SCRIPT="${srcdir}/emulparams/${CUSTOMIZER_SCRIPT}.sh"
252b5132
RH
85
86# Include the emulation-specific parameters:
8fbdf3ab 87. ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
252b5132
RH
88
89if test -d ldscripts; then
90 true
91else
92 mkdir ldscripts
93fi
94
9c8ebd6a
DJ
95# Set some flags for the emultempl scripts. USE_LIBPATH will
96# be set for any libpath-using emulation; NATIVE will be set for a
97# libpath-using emulation where ${host} = ${target}. NATIVE
98# may already have been set by the emulparams file, but that's OK
99# (it'll just get set to "yes" twice).
100
101case " $EMULATION_LIBPATH " in
102 *" ${EMULATION_NAME} "*)
103 if [ "x${host}" = "x${target}" ] ; then
104 NATIVE=yes
105 USE_LIBPATH=yes
106 elif [ "x${use_sysroot}" = "xyes" ] ; then
107 USE_LIBPATH=yes
108 fi
109 ;;
110esac
111
112# If the emulparams file sets NATIVE, make sure USE_LIBPATH is set also.
113if test "x$NATIVE" = "xyes" ; then
114 USE_LIBPATH=yes
115fi
116
252b5132
RH
117# Set the library search path, for libraries named by -lfoo.
118# If LIB_PATH is defined (e.g., by Makefile) and non-empty, it is used.
119# Otherwise, the default is set here.
120#
121# The format is the usual list of colon-separated directories.
122# To force a logically empty LIB_PATH, do LIBPATH=":".
9c8ebd6a
DJ
123#
124# If we are using a sysroot, prefix library paths with "=" to indicate this.
125#
126# If the emulparams file set LIBPATH_SUFFIX, prepend an extra copy of
127# the library path with the suffix applied.
252b5132 128
9c8ebd6a 129if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then
f22f5fcd 130 LIB_PATH2=
1dd3bf68
AM
131
132 libs=${NATIVE_LIB_DIRS}
133 if [ "x${use_sysroot}" != "xyes" ] ; then
134 case " ${libs} " in
135 *" ${libdir} "*) ;;
586196d5 136 *) libs="${libdir} ${libs}" ;;
1dd3bf68
AM
137 esac
138 case " ${libs} " in
139 *" ${tool_lib} "*) ;;
586196d5 140 *) libs="${tool_lib} ${libs}" ;;
1dd3bf68 141 esac
9c8ebd6a 142 fi
1dd3bf68
AM
143
144 for lib in ${libs}; do
9c8ebd6a
DJ
145 # The "=" is harmless if we aren't using a sysroot, but also needless.
146 if [ "x${use_sysroot}" = "xyes" ] ; then
147 lib="=${lib}"
148 fi
d460ab58
JJ
149 addsuffix=
150 case "${LIBPATH_SUFFIX}:${lib}" in
151 :*) ;;
152 *:*${LIBPATH_SUFFIX}) ;;
153 *) addsuffix=yes ;;
3336653a 154 esac
d460ab58
JJ
155 if test -n "$addsuffix"; then
156 case :${LIB_PATH}: in
157 *:${lib}${LIBPATH_SUFFIX}:*) ;;
158 ::) LIB_PATH=${lib}${LIBPATH_SUFFIX} ;;
159 *) LIB_PATH=${LIB_PATH}:${lib}${LIBPATH_SUFFIX} ;;
160 esac
f22f5fcd 161 case :${LIB_PATH}:${LIB_PATH2}: in
d460ab58 162 *:${lib}:*) ;;
f22f5fcd
AM
163 *::) LIB_PATH2=${lib} ;;
164 *) LIB_PATH2=${LIB_PATH2}:${lib} ;;
d460ab58
JJ
165 esac
166 else
f22f5fcd
AM
167 case :${LIB_PATH2}: in
168 *:${lib}:*) ;;
169 ::) LIB_PATH2=${lib} ;;
170 *) LIB_PATH2=${LIB_PATH2}:${lib} ;;
d460ab58
JJ
171 esac
172 fi
9c8ebd6a 173 done
1dd3bf68 174
f22f5fcd
AM
175 case :${LIB_PATH}:${LIB_PATH2}: in
176 *:: | ::*) LIB_PATH=${LIB_PATH}${LIB_PATH2} ;;
177 *) LIB_PATH=${LIB_PATH}:${LIB_PATH2} ;;
178 esac
252b5132
RH
179fi
180
9c8ebd6a 181# Always search $(tooldir)/lib, aka /usr/local/TARGET/lib, except for
f22f5fcd 182# sysrooted configurations and when LIBPATH=":".
9c8ebd6a 183if [ "x${use_sysroot}" != "xyes" ] ; then
f22f5fcd
AM
184 case :${LIB_PATH}: in
185 ::: | *:${tool_lib}:*) ;;
186 ::) LIB_PATH=${tool_lib} ;;
187 *) LIB_PATH=${tool_lib}:${LIB_PATH} ;;
188 esac
9c8ebd6a 189fi
252b5132 190
eb3d6bb8 191LIB_SEARCH_DIRS=`echo ${LIB_PATH} | sed -e 's/:/ /g' -e 's/\([^ ][^ ]*\)/SEARCH_DIR(\\"\1\\");/g'`
252b5132 192
cdaeef2e 193# We need it for testsuite.
dc4f76f8
L
194set $EMULATION_LIBPATH
195if [ "x$1" = "x$EMULATION_NAME" ]; then
cdaeef2e 196 test -d tmpdir || mkdir tmpdir
dc4f76f8 197 rm -f tmpdir/libpath.exp
cdaeef2e 198 echo "set libpath \"${LIB_PATH}\"" | sed -e 's/:/ /g' > tmpdir/libpath.exp
dc4f76f8 199fi
cdaeef2e 200
252b5132
RH
201# Generate 5 or 6 script files from a master script template in
202# ${srcdir}/scripttempl/${SCRIPT_NAME}.sh. Which one of the 5 or 6
203# script files is actually used depends on command line options given
204# to ld. (SCRIPT_NAME was set in the emulparams_file.)
205#
206# A .x script file is the default script.
207# A .xr script is for linking without relocation (-r flag).
208# A .xu script is like .xr, but *do* create constructors (-Ur flag).
209# A .xn script is for linking with -n flag (mix text and data on same page).
210# A .xbn script is for linking with -N flag (mix text and data on same page).
211# A .xs script is for generating a shared library with the --shared
212# flag; it is only generated if $GENERATE_SHLIB_SCRIPT is set by the
213# emulation parameters.
db6751f2
JJ
214# A .xc script is for linking with -z combreloc; it is only generated if
215# $GENERATE_COMBRELOC_SCRIPT is set by the emulation parameters or
216# $SCRIPT_NAME is "elf".
217# A .xsc script is for linking with --shared -z combreloc; it is generated
218# if $GENERATE_COMBRELOC_SCRIPT is set by the emulation parameters or
219# $SCRIPT_NAME is "elf" and $GENERATE_SHLIB_SCRIPT is set by the emulation
220# parameters too.
221
222if [ "x$SCRIPT_NAME" = "xelf" ]; then
223 GENERATE_COMBRELOC_SCRIPT=yes
224fi
252b5132 225
1ddd7b13 226SEGMENT_SIZE=${SEGMENT_SIZE-${MAXPAGESIZE-${TARGET_PAGE_SIZE}}}
252b5132
RH
227
228# Determine DATA_ALIGNMENT for the 5 variants, using
8fbdf3ab 229# values specified in the emulparams/<script_to_run>.sh file or default.
252b5132
RH
230
231DATA_ALIGNMENT_="${DATA_ALIGNMENT_-${DATA_ALIGNMENT-ALIGN(${SEGMENT_SIZE})}}"
232DATA_ALIGNMENT_n="${DATA_ALIGNMENT_n-${DATA_ALIGNMENT_}}"
233DATA_ALIGNMENT_N="${DATA_ALIGNMENT_N-${DATA_ALIGNMENT-.}}"
234DATA_ALIGNMENT_r="${DATA_ALIGNMENT_r-${DATA_ALIGNMENT-}}"
235DATA_ALIGNMENT_u="${DATA_ALIGNMENT_u-${DATA_ALIGNMENT_r}}"
236
237LD_FLAG=r
238DATA_ALIGNMENT=${DATA_ALIGNMENT_r}
239DEFAULT_DATA_ALIGNMENT="ALIGN(${SEGMENT_SIZE})"
cedd6b0d 240( echo "/* Script for ld -r: link without relocation */"
8fbdf3ab 241 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
179c732c 242 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
db6751f2 243) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xr
252b5132
RH
244
245LD_FLAG=u
246DATA_ALIGNMENT=${DATA_ALIGNMENT_u}
247CONSTRUCTING=" "
cedd6b0d 248( echo "/* Script for ld -Ur: link w/out relocation, do create constructors */"
8fbdf3ab 249 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
179c732c 250 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
db6751f2 251) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xu
252b5132
RH
252
253LD_FLAG=
254DATA_ALIGNMENT=${DATA_ALIGNMENT_}
255RELOCATING=" "
cedd6b0d 256( echo "/* Default linker script, for normal executables */"
8fbdf3ab 257 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
179c732c 258 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
db6751f2 259) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.x
252b5132
RH
260
261LD_FLAG=n
262DATA_ALIGNMENT=${DATA_ALIGNMENT_n}
263TEXT_START_ADDR=${NONPAGED_TEXT_START_ADDR-${TEXT_START_ADDR}}
cedd6b0d 264( echo "/* Script for -n: mix text and data on same page */"
8fbdf3ab 265 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
179c732c 266 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
db6751f2 267) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xn
252b5132
RH
268
269LD_FLAG=N
270DATA_ALIGNMENT=${DATA_ALIGNMENT_N}
cedd6b0d 271( echo "/* Script for -N: mix text and data on same page; don't align data */"
8fbdf3ab 272 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
179c732c 273 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
db6751f2
JJ
274) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xbn
275
276if test -n "$GENERATE_COMBRELOC_SCRIPT"; then
277 DATA_ALIGNMENT=${DATA_ALIGNMENT_c-${DATA_ALIGNMENT_}}
278 LD_FLAG=c
279 COMBRELOC=ldscripts/${EMULATION_NAME}.xc.tmp
e24d7c12 280 ( echo "/* Script for -z combreloc: combine and sort reloc sections */"
8fbdf3ab 281 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
db6751f2
JJ
282 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
283 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xc
284 rm -f ${COMBRELOC}
8c37241b
JJ
285 LD_FLAG=w
286 RELRO_NOW=" "
287 COMBRELOC=ldscripts/${EMULATION_NAME}.xw.tmp
288 ( echo "/* Script for -z combreloc -z now -z relro: combine and sort reloc sections */"
289 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
290 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
291 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xw
292 rm -f ${COMBRELOC}
db6751f2 293 COMBRELOC=
8c37241b 294 unset RELRO_NOW
db6751f2 295fi
252b5132
RH
296
297if test -n "$GENERATE_SHLIB_SCRIPT"; then
298 LD_FLAG=shared
299 DATA_ALIGNMENT=${DATA_ALIGNMENT_s-${DATA_ALIGNMENT_}}
300 CREATE_SHLIB=" "
301 # Note that TEXT_START_ADDR is set to NONPAGED_TEXT_START_ADDR.
cedd6b0d
JB
302 (
303 echo "/* Script for ld --shared: link shared library */"
8fbdf3ab 304 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
179c732c 305 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
db6751f2
JJ
306 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xs
307 if test -n "$GENERATE_COMBRELOC_SCRIPT"; then
308 LD_FLAG=cshared
309 DATA_ALIGNMENT=${DATA_ALIGNMENT_sc-${DATA_ALIGNMENT}}
8c37241b 310 COMBRELOC=ldscripts/${EMULATION_NAME}.xsc.tmp
cedd6b0d 311 ( echo "/* Script for --shared -z combreloc: shared library, combine & sort relocs */"
8fbdf3ab 312 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
db6751f2
JJ
313 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
314 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xsc
315 rm -f ${COMBRELOC}
8c37241b
JJ
316 LD_FLAG=wshared
317 RELRO_NOW=" "
318 COMBRELOC=ldscripts/${EMULATION_NAME}.xsw.tmp
319 ( echo "/* Script for --shared -z combreloc -z now -z relro: shared library, combine & sort relocs */"
320 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
321 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
322 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xsw
323 rm -f ${COMBRELOC}
db6751f2 324 COMBRELOC=
8c37241b 325 unset RELRO_NOW
db6751f2 326 fi
36af4a4e
JJ
327 unset CREATE_SHLIB
328fi
329
330if test -n "$GENERATE_PIE_SCRIPT"; then
331 LD_FLAG=pie
332 DATA_ALIGNMENT=${DATA_ALIGNMENT_s-${DATA_ALIGNMENT_}}
333 CREATE_PIE=" "
334 # Note that TEXT_START_ADDR is set to NONPAGED_TEXT_START_ADDR.
335 (
336 echo "/* Script for ld -pie: link position independent executable */"
8fbdf3ab 337 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
36af4a4e
JJ
338 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
339 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xd
340 if test -n "$GENERATE_COMBRELOC_SCRIPT"; then
341 LD_FLAG=cpie
342 DATA_ALIGNMENT=${DATA_ALIGNMENT_sc-${DATA_ALIGNMENT}}
8c37241b 343 COMBRELOC=ldscripts/${EMULATION_NAME}.xdc.tmp
36af4a4e 344 ( echo "/* Script for -pie -z combreloc: position independent executable, combine & sort relocs */"
8fbdf3ab 345 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
36af4a4e
JJ
346 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
347 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xdc
348 rm -f ${COMBRELOC}
8c37241b
JJ
349 LD_FLAG=wpie
350 RELRO_NOW=" "
351 COMBRELOC=ldscripts/${EMULATION_NAME}.xdw.tmp
352 ( echo "/* Script for -pie -z combreloc -z now -z relro: position independent executable, combine & sort relocs */"
353 . ${CUSTOMIZER_SCRIPT} ${EMULATION_NAME}
354 . ${srcdir}/scripttempl/${SCRIPT_NAME}.sc
355 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xdw
356 rm -f ${COMBRELOC}
36af4a4e 357 COMBRELOC=
8c37241b 358 unset RELRO_NOW
36af4a4e
JJ
359 fi
360 unset CREATE_PIE
252b5132
RH
361fi
362
eb3d6bb8
AM
363case " $EMULATION_LIBPATH " in
364 *" ${EMULATION_NAME} "*) COMPILE_IN=true;;
365esac
252b5132
RH
366
367# Generate e${EMULATION_NAME}.c.
368. ${srcdir}/emultempl/${TEMPLATE_NAME-generic}.em
This page took 0.291127 seconds and 4 git commands to generate.