File: preconfigure

package info (click to toggle)
glibc 2.28-10%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 272,660 kB
  • sloc: ansic: 1,008,227; asm: 259,607; makefile: 11,278; sh: 10,460; python: 6,910; cpp: 4,995; perl: 2,258; awk: 2,005; yacc: 290; pascal: 182; sed: 73
file content (21 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This fragment canonicalizes the machine names for m68k variants.

case "$machine" in
m680?0)		base_machine=m68k machine=m68k/m680x0/$machine ;;
m68k)		variant=`(echo "#ifdef __mcoldfire__"
			  echo "coldfire"
			  echo "#else"
			  echo "m680x0/m68020"
			  echo "#endif") |
			 $CC $CFLAGS $CPPFLAGS -E - |
			 grep '^[a-z]'`
		if test -z "$variant"; then
		  echo >&2 "Cannot determine m68k processor variant"
		  exit 1
		fi
		base_machine=m68k machine=m68k/$variant
		if test "$variant" = "coldfire"; then
		  with_fp_cond="defined __mcffpu__"
		fi
		;;
esac