mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 00:31:08 +00:00
18 lines
379 B
Plaintext
18 lines
379 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
|
||
|
case "$machine" in
|
||
|
tile*)
|
||
|
libc_commonpagesize=0x10000
|
||
|
libc_relro_required=yes ;;
|
||
|
esac
|