mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 23:40:10 +00:00
18 lines
379 B
Bash
18 lines
379 B
Bash
# 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
|