mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 17:11:06 +00:00
13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
|
# This is a -*- sh -*-
|
||
|
case "$machine" in
|
||
|
tilepro)
|
||
|
base_machine=tile machine=tile/tilepro ;;
|
||
|
tilegx)
|
||
|
base_machine=tile
|
||
|
if $CC $CFLAGS $CPPFLAGS -E -dM -xc /dev/null | grep -q __LP64__; then
|
||
|
machine=tile/tilegx/tilegx64
|
||
|
else
|
||
|
machine=tile/tilegx/tilegx32
|
||
|
fi ;;
|
||
|
esac
|