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