File: configure

package info (click to toggle)
lcrash 7.0.0.pre.cvs.20050322-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,836 kB
  • ctags: 6,655
  • sloc: ansic: 57,332; makefile: 859; yacc: 433; sh: 410; lex: 275
file content (439 lines) | stat: -rwxr-xr-x 9,017 bytes parent folder | download | duplicates (2)
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#!/bin/sh
#
# This is the configuration script for the lkcdutils package.
# 

# Set some default values.
#
if [ -z $ARCH ] ;
then
	ARCH=`uname -m | sed -e s/i.86/i386/`
fi
SYS_VER=`/bin/uname -r | awk -F. '{ print $1"."$2}'`

LKCDUTILS_DIR=`pwd`
outfile=.config
CC_LOC=/usr/bin/
mandir=/usr/share/man

# Loop over all args

while :
do

# Get the first arg, and shuffle
	case $# in
		0)
		break
		;;
		esac

# Get the first arg, and shuffle
	option=$1
	shift

# Make all options have two hyphens
	orig_option=$option # Save original for error messages
	case $option in
		--*) ;;
		-*) option=-$option ;;
		esac

# Split out the argument for options that take them
	case $option in
	--*=*)
		optarg=`echo $option | sed -e 's/^[^=]*=//'`
		arguments="$arguments $option"
		;;
	esac

# Now, process the options. Note that there are a number of unused
# options (e.g., --prefix) that have to be here to so that configure
# runs properly via rpm -ba.
	case $option in

	--arch*)
		ARCH=$optarg
		;;

	--cflags*)
		CFLAGS=$optarg
		;;

	--lflags*)
		LFLAGS=$optarg
		;;

	--outfile*)
		outfile=$optarg
		;;

	--help | --he*)
		fatal=yes
		;;

	--prefix*)
		ROOT=$optarg
		;;

# 	--exec-prefix*)
# 		exec-prefix=$optarg
# 		;;

# 	--bindir*)
# 		bindir=$optarg
# 		;;

# 	--sbindir*)
# 		sbindir=$optarg
# 		;;

# 	--sysconfdir*)
# 		sysconfdir=$optarg
# 		;;

# 	--datadir*)
# 		datadir=$optarg
# 		;;

# 	--includedir*)
# 		includedir=$optarg
# 		;;

# 	--libdir*)
# 		libdir=$optarg
# 		;;

# 	--libexecdir*)
# 		libexecdir=$optarg
# 		;;

# 	--localstatedir*)
# 		localstatedir=$optarg
# 		;;

# 	--sharedstatedir*)
# 		sharedstatedir=$optarg
# 		;;

	--mandir*)
		mandir=$optarg
		;;

# 	--infodir*)
# 		infodir=$optarg
# 		;;

	--bfd-version*)
		BFD_VERSION=$optarg
		;;

	--target-arch*)
		TARGET_ARCH=$optarg
		;;

	--cleanup)
		clean=1
		;;

	--*)
        	echo "configure: Unrecognized option: \"$orig_option\"; use --help for usage." >&2
		exit 1
		;;
	esac
done

if [ $clean ] ;
then
	# First, clean up the workarea
	echo "configure: cleaning up workarea"
	echo "configure: make clobber"
	echo
	make clobber
	( cd utilities/netdump ; make clobber )
	( cd lcrash ; ./configure --cleanup )
	if [ -f $outfile ] ;
	then
		echo "configure: removing $outfile"
		rm -f $outfile
	fi
	if [ -x dwarf ] ;
	then
		echo "configure: removing dwarf"
		rm -rf dwarf
	fi
	exit 0
fi

# Make sure ARCH is defined and that ARCH is an supported architecture
# 

if [ -z $ARCH ] ;
then
        echo
        echo configure: ARCH is undefined!
        fatal=yes
else
    case $ARCH in
    alpha)  ;;
    arm)    ;;
    i386)   ;;
    ia64)   ;;
    s390)   ;;
    s390x)  ;;
    x86_64) ;; 
    xscale) ARCH=arm;;
    ppc64)  # Also check/fix GFLAGS since stabs don't make sense in 64-bit
	case "$GFLAGS" in
		*stabs*)  GFLAGS=-g ;;
	esac
	cat `$CC_LOC"gcc" -v 2>&1 | head -1 | awk '{print $NF}'` | grep __PPC64__ > /dev/null
	if [ $? -eq 0 ] ;
	then
		PPC64_GCC=1
	else
		PPC64_GCC=0
	fi
	;;
    *)
	echo
	echo configure: $ARCH is not a supported architecture!
	fatal=yes
	;;
    esac
fi

#
# select dump arch support
#
init_target_arch()
{
    TARGET_ARCH_ALPHA=n
    TARGET_ARCH_ARM=n
    TARGET_ARCH_I386=n
    TARGET_ARCH_IA64=n
    TARGET_ARCH_S390=n
    TARGET_ARCH_S390X=n
    TARGET_ARCH_XSCALE=n
    TARGET_ARCH_PPC64=n
    TARGET_ARCH_X86_64=n
}

set_target_arch()
{
    case $1 in
    alpha) TARGET_ARCH_ALPHA=y;;
    arm)   TARGET_ARCH_ARM=y;;
    i386)  TARGET_ARCH_I386=y;;
    ia64)  TARGET_ARCH_IA64=y;;
    s390)  TARGET_ARCH_S390=y;;
    s390x) TARGET_ARCH_S390X=y;;
    xscale) TARGET_ARCH_XSCALE=y;;
    ppc64) TARGET_ARCH_PPC64=y;;
    x86_64) TARGET_ARCH_X86_64=y;; 	
    all)
	TARGET_ARCH_ARM=y 
	TARGET_ARCH_I386=y
	TARGET_ARCH_IA64=y
	TARGET_ARCH_S390=y
	TARGET_ARCH_S390X=y
	TARGET_ARCH_PPC64=y
	TARGET_ARCH_X86_64=y
	;;
    everything)
	TARGET_ARCH_ALPHA=y
	TARGET_ARCH_ARM=y
	TARGET_ARCH_I386=y
	TARGET_ARCH_IA64=y
	TARGET_ARCH_S390=y
	TARGET_ARCH_S390X=y
	TARGET_ARCH_XSCALE=y
	TARGET_ARCH_PPC64=y
	TARGET_ARCH_X86_64=y
	;;
    *)
	echo
	echo configure: $i is not a supported architecture!
	fatal=yes
	;;
    esac
}

init_target_arch
if [ -z $TARGET_ARCH ] ;
then
	echo
        echo "configure: TARGET_ARCH is undefined"
	echo "configure: setting TARGET_ARCH=$ARCH"
    set_target_arch $ARCH
else
    OLD_IFS=$IFS
    IFS=,
    for i in $TARGET_ARCH
    do
	set_target_arch $i
    done
    IFS=$OLD_IFS
fi

#
# determine version of bfd (binutils)
#
if [ -z $BFD_VERSION ] ;
then
	echo configure: determine bfd version ...
	$CC_LOC"gcc" -Wall $CFLAGS SOURCES/get_bfd_version.c -o get_bfd_version
	if [ $? -eq 0 ] ;
	then
		BFD_VERSION_NUMBER=`./get_bfd_version`
		if [ $? -ne 0 ] ;
		then
			echo
			echo configure: Could not determine BFD_VERSION_NUMBER!
			fatal=yes
		else
			echo configure: BFD_VERSION_NUMBER=$BFD_VERSION_NUMBER
		fi
	fi
else
	echo configure: configure bfd version ...
	$CC_LOC"gcc" -Wall SOURCES/get_bfd_version.c -o get_bfd_version -DBFD_VERSION=$BFD_VERSION
	if [ $? -eq 0 ] ;
	then
		BFD_VERSION_NUMBER=`./get_bfd_version`
		if [ $? -ne 0 ] ;
		then
			echo
			echo configure: Could not configure BFD_VERSION_NUMBER!
			fatal=yes
		else
			echo configure: BFD_VERSION_NUMBER=$BFD_VERSION_NUMBER
		fi
	fi
fi
    
# print usage of configure script
if [ $fatal ] ;
then
	echo
	echo usage: configure [OPTIONS]
	echo
	echo Options:
	echo ' --cleanup          Clean up the build area (remove lc_config.h, .config, etc.)'
	echo ' --help             Print this message'
	echo ' --arch=ARCH        Target system architecture'
	echo ' --cflags=CFLAGS    global compile options in quotation marks'
	echo ' --lflags=LFLAGS    global linker options in quotation marks'
	echo ' --outfile=OUTFILE  Output file name'
	echo ' --bfd-version=BFD_VERSION'
	echo '                    version of libbfd (should be same as binutils version)'
	echo ' --prefix=PREFIX    prefix for installation directories (default "/")'
	echo ' --target-arch=TARGET_ARCH'
	echo '                    supported dump architectures'
	echo '                    one or more (comma separated) of "alpha",'
	echo '                    "arm", "i386", "ia64", "s390", "s390x", "xscale", "ppc64"'
	echo '                    "all" or "everything"'
	echo '                    ("all" stands for all targets except "alpha",'
	echo '                     "everything" stands for all above targets)'
	exit 0
fi

# Make sure we have a clean workarea to begin with
echo "configure: make clobber"
echo
make clobber

# check to see if libelf library is present
#
if [ ! -f /usr/lib/libelf.a -a ! -f /usr/lib/libelf.so \
	-a ! -f /usr/local/lib/libelf.a -a ! -f /usr/local/lib/libelf.so ]
then
	echo
	echo "*************************************************"
	echo "WARNING: Could not find libelf library!"
	echo "*************************************************"
	echo
fi

# Check to see if libelf.h header file exists. If it doesn't, then 
# we aren't going to be able to build libdwarf. Print out a message
# and bail...
if [ ! -f /usr/include/libelf.h -a ! -f /usr/include/libelf/libelf.h \
	-a ! -f /usr/local/include/libelf.h ]
then
	echo
	echo "*************************************************"
	echo "WARNING: Could not find libelf.h"
	echo "*************************************************"
	echo
	exit 1
fi

# If we found libelf.h then install libdwarf, apply patches, and configure. 
#
if [ -f SOURCES/libdwarf*.tar.gz ]
then
	# If there is already a dwarf directory there, then remove it
	# first
	if [ -x dwarf ]
	then
		rm -rf dwarf
	fi
	tar xvzf SOURCES/libdwarf*.tar.gz

	# rename directory to 'dwarf' to make it easier to clean 
	# up later

	mv dwarf* dwarf
	cd dwarf
	patch -p1 < ../PATCHES/dwarf-rela.patch
	patch -p1 < ../PATCHES/dwarf-lkcd.patch
	cd libdwarf
	./configure
	cd ../..

	# Add the pointer to the libdwarf directory so that we
	# can pick up what we need from there for the build
	CFLAGS="-I$LKCDUTILS_DIR/dwarf/libdwarf $CFLAGS"
	LFLAGS="-L$LKCDUTILS_DIR/dwarf/libdwarf $LFLAGS"
fi

# Make sure to configure lcrash
( cd lcrash ; ./configure --arch=$ARCH --bfd-version=$BFD_VERSION_NUMBER )

#
# generate .config file, used by Makefiles
#
init_config()
{
    echo "# This file is automaticly generated by the lkcdutils configure script." >$outfile
    echo "# Do not edit by hand!" >> $outfile
    echo "# " >> $outfile
}
append_var_to_config()
{
    eval echo $1=\$$1 >> $outfile
}

init_config
append_var_to_config LKCDUTILS_DIR
append_var_to_config ARCH
append_var_to_config CFLAGS
append_var_to_config LFLAGS
append_var_to_config TARGET_ARCH_ALPHA
append_var_to_config TARGET_ARCH_ARM
append_var_to_config TARGET_ARCH_I386
append_var_to_config TARGET_ARCH_IA64
append_var_to_config TARGET_ARCH_S390
append_var_to_config TARGET_ARCH_S390X
append_var_to_config TARGET_ARCH_XSCALE
append_var_to_config TARGET_ARCH_PPC64
append_var_to_config TARGET_ARCH_X86_64
append_var_to_config ROOT
append_var_to_config SYS_VER
append_var_to_config mandir
if [ $ARCH = "ppc64" ] ;
then
	append_var_to_config PPC64_GCC
fi