summaryrefslogtreecommitdiff
path: root/gdb/config.gdb
blob: b4261e8f165cac5a0798185cd5379562fca5ce1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#!/bin/sh

#
# Shell script to do machine-dependent things in
# preparation for compiling gdb.
#
# Usage: config.gdb machine [operating-system]
#
# If config.gdb succeeds, it leaves its status in config.status.
# If config.gdb fails after disturbing the status quo, 
# 	config.status is removed.
#
# Note: if making something gives errors like "unable to make target
# 1-dep.c", this means that the compiler has put in a builtin define
# and there is a "-U" missing from makedefine in this file.
#

progname=$0

case $# in 
1)
	machine=$1
	os=""
	;;
2)
	machine=$1
	os=$2
	;;
*)
	echo "Usage: $progname machine [operating-system]"
	echo "Available machine types:"
	echo m-*.h | sed 's/m-//g' | sed 's/\.h//g'
	if [ -r config.status ]
	then
		cat config.status
	fi
	exit 1
	;;
esac

# cannonicalize the machine name.
case $machine in
news)
	case $os in
	os3|newsos3)
		$machine=newsos3
		$os=""
		;;
	esac
	;;
sun2)
	case $os in
	os4|sunos4)
		machine=sun2os4
		os=""
	;;
	os2|sunos2)
		machine=sun2os2
		os=""
		;;
	esac
	;;
sun3)
	case $os in
	os4|sunos4)
		machine=sun3os4
		os=""
		;;
	os3|sunos3)
		machine=sun3os3
		os=""
		;;
	*)
# Arguably, the default should be sun3os4, but in that case we'd want
# to change the list of machine types given by "config.gdb" so it
# doesn't list "sun3 sun3os4".
		machine=sun3os3
		os=""
		;;
	esac
	;;
sparc|sun4)
	case $os in
	os4|sunos4)
		machine=sun4os4
		os=""
		;;
	*)
# Arguably, the default should be sun4os4, but in that case we'd want
# to change the list of machine types given by "config.gdb" so it
# doesn't list "sun4 sun4os4".
		machine=sun4os3
		os=""
		;;
	esac
	;;
# GCC accepts sequent-i386 or symmetry, so be consistent.
sequent-i386)
	machine=symmetry
	os=""
	;;
esac

paramfile=m-${machine}${os}.h
pinsnfile=${machine}${os}-pinsn.c
opcodefile=${machine}${os}-opcode.h
# Set up a define for purposes of editing the makefile.
makedefine=
if [ -r ${machine}${os}-dep.c ]
then
	depfile=${machine}${os}-dep.c
else
	depfile=default-dep.c
fi

#
# Special cases.
# If a file is not needed, set the file name to something.
# It must be linked to something, or else make will try to make it.
# /dev/null will not work because on systems without symbolic links,
# it will complain that /dev/null is on a different file system.
#
case $machine in
altos)
	makedefine="-DM_REGEX=regex.o -DM_SYSV -DM_BSD_NM"
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;
altosgas)
	echo "Use of the coff encapsulation features require the GNU binutils utilities"
	echo "To be ahead of their System V counterparts in your path."
	makedefine="-DM_REGEX=regex.o -DM_SYSV -DM_BSD_NM"
	pinsnfile=m68k-pinsn.c
	depfile=altos-dep.c
	opcodefile=m68k-opcode.h
	;;
pyramid)
	echo
	echo "Note that GDB on Pyramids only works with GCC."
	echo
	;;
vax)
	echo
# The following types of /bin/cc failures have been observed:
# 1.  Something in readline.c which I have never seen
# 2.  ``"values.c", line 816: compiler error: schain botch''
	echo "/bin/cc has been known to fail on VAXen running BSD4.3"
	echo "If this occurs, use gcc "
	echo " (but see comments in Makefile.dist about compiling with gcc)."
	echo
	pinsnfile=vax-pinsn.c
	opcodefile=vax-opcode.h
	;;
hp9k320)
# The headers in the directory hp-include override system headers
# and tell GDB to use BSD executable file format (hence -Ihp-include)
	makedefine="-DM_SYSV -DM_BSD_NM -DM_REGEX=regex.o 
		-DM_ALLOCA=alloca.o -DM_CFLAGS=-Ihp-include"
# The following is true because gcc uses a different .o file format
# than the native HPUX compiler
	echo
	echo "If you compile GDB with GCC on HPUX, you must make sure"
	echo "that the \`nm' used in \`munch' is GNU nm"
	echo
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;
hp300bsd)
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;
isi)
# ISI running bsd4.2
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;
i386)
	makedefine="-DM_CLIBS=-lPW -DM_SYSV -DM_REGEX=regex.o"
# The following is a lie, but a necessary one.  See comment at beginning
# of this file about unneeded files.
	opcodefile=m-i386.h
	;;
i386gas)
	makedefine="-DM_CLIBS=-lPW -DM_SYSV -DM_REGEX=regex.o"
	echo
	echo "Use of the coff encapsulation features requires the GNU binary utilities"
	echo "to be ahead of their System V counterparts in your path."
	echo
	pinsnfile=i386-pinsn.c
	depfile=i386-dep.c
# The following is a lie, but a necessary one.  See comment at beginning
# of this file about unneeded files.
	opcodefile=m-i386.h
	;;
# These names are short and cryptic due to the @#$#!@#$@! System V
# 14 character file name limit.
i386-sv32)
	makedefine="-DM_CLIBS=-lPW -DM_SYSV -DM_REGEX=regex.o"
	pinsnfile=i386-pinsn.c
	depfile=i386-dep.c
# The following is a lie, but a necessary one.  See comment at beginning
# of this file about unneeded files.
	opcodefile=m-i386.h
	;;
i386g-sv32)
	makedefine="-DM_CLIBS=-lPW -DM_SYSV -DM_REGEX=regex.o"
	echo
	echo "Use of the coff encapsulation features requires the GNU binary utilities"
	echo "to be ahead of their System V counterparts in your path."
	echo
	pinsnfile=i386-pinsn.c
	depfile=i386-dep.c
# The following is a lie, but a necessary one.  See comment at beginning
# of this file about unneeded files.
	opcodefile=m-i386.h
	;;
merlin)
	echo ""
	echo "To install GDB on this machine you must copy /bin/sh"
	echo "to /usr/local/lib/gdb-sh, and make it world readable"
	echo "and writeable.  For example:"
	echo "    cp /bin/sh /usr/local/lib/gdb-sh"
	echo "    chmod ogu+rw /usr/local/lib/gdb-sh"
	echo "If you want to put it somewhere other than /usr/local/lib,"
	echo "edit the definition of SHELL_FILE in m-merlin.h"
	echo ""
	pinsnfile=ns32k-pinsn.c
	opcodefile=ns32k-opcode.h
	;;
news)
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;
newsos3)
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	depfile=news-dep.c
	;;
npl)
	pinsnfile=gld-pinsn.c
	;;
pn)
	pinsnfile=gld-pinsn.c
	;;
sun2)
	depfile=sun3-dep.c
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;
sun2os2|sun2-os2)
	depfile=default-dep.c
	paramfile=m-sun2.h
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;	
sun2os4|sun2-os4)
# Compile GDB without shared libraries so that it can be run on itself.
# -Bstatic is the right flag for cc.
# For gcc, -Bstatic is (probably) a no-op, and -g (which is specified by
#  Makefile.dist prevents use of shared libraries).
	makedefine=-DM_CFLAGS=-Bstatic
	echo
	echo "Make sure to compile any program on which you want to run gdb"
	echo " without shared libraries (cc -Bstatic)"
	echo
	paramfile=m-sun2os4.h
	depfile=sun3-dep.c
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;	
sun3os3)
	paramfile=m-sun3.h
	depfile=sun3-dep.c
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	;;
sun3os4|sun3-os4)
# Compile GDB without shared libraries so that it can be run on itself.
	makedefine=-DM_CFLAGS=-Bstatic
	echo
	echo "Make sure to compile any program on which you want to run gdb"
	echo " without shared libraries (cc -Bstatic)"
	echo
	paramfile=m-sun3os4.h
	pinsnfile=m68k-pinsn.c
	opcodefile=m68k-opcode.h
	depfile=sun3-dep.c
	;;	
sun4os4|sun4-os4)
# Compile GDB without shared libraries so that it can be run on itself.
# Undefine sparc to avoid changing sparc-dep.c to 1-dep.c
	makedefine="-DM_CFLAGS=-Bstatic -Usparc"
	echo
	echo "Make sure to compile any program on which you want to run gdb"
	echo " without shared libraries (cc -Bstatic)"
	echo
	paramfile=m-sun4os4.h
	pinsnfile=sparc-pinsn.c
	opcodefile=sparc-opcode.h
	depfile=sparc-dep.c
	;;	
symmetry)
	paramfile=m-symmetry.h
	depfile=symmetry-dep.c
	pinsnfile=i386-pinsn.c
# The following is a lie, but a necessary one.  See comment at beginning
# of this file about unneeded files.
	opcodefile=m-i386.h
	;;
umax)
	pinsnfile=ns32k-pinsn.c
	opcodefile=ns32k-opcode.h
	;;
sparc|sun4|sun4os3|sun4-os3)
	paramfile=m-sparc.h
# Undefine sparc to avoid changing sparc-dep.c to 1-dep.c
	makedefine=-Usparc
	pinsnfile=sparc-pinsn.c
	opcodefile=sparc-opcode.h
	depfile=sparc-dep.c
	;;
convex)
	;;
test)
	paramfile=one
	pinsnfile=three
	opcodefile=four
	;;
*)
	echo "Unknown machine type: \`$machine'"
	echo "Available types:"
	echo m-*.h | sed 's/m-//g' | sed 's/\.h//g'
	exit 1
	;;
esac

files="$paramfile $pinsnfile $opcodefile $depfile"
links="param.h pinsn.c opcode.h dep.c"	

rm -f config.status
while [ -n "$files" ]
do
	# set file to car of files, files to cdr of files
	set $files; file=$1; shift; files=$*
	set $links; link=$1; shift; links=$*

	if [ "$file" != skip ]
	then
		if [ ! -r $file ]
		then
			echo "$progname: cannot create a link \`$link',"
			echo "since the file \`$file' does not exist."
			exit 1
		fi

		echo "Linking \`$link' to \`$file'."
		rm -f $link
		# Make a symlink if possible, otherwise try a hard link
		ln -s $file $link 2>/dev/null || ln $file $link

		if [ ! -r $link ]
		then
			echo "$progname: unable to link \`$link' to \`$file'."
			exit 1
		fi
	fi
done

# edit the makefile
echo "Editing Makefile"
cp Makefile.dist tmp.c
cc -E >Makefile tmp.c $makedefine -DM_MAKEDEFINE="$makedefine"
rm -f tmp.c

echo "GDB is now set up for use with a $machine." \
	| tee config.status
exit 0