summaryrefslogtreecommitdiff
path: root/libiberty/config.table
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-15 16:00:37 -0800
committerYamaArashi <shadow962@live.com>2016-02-15 16:00:37 -0800
commit2f209e7d2884f9658a996adeb896233db9fecdad (patch)
treecc0806a5f4fdaca67ef39a9bb583347c68b54edd /libiberty/config.table
parent526fd830c2ce8da3397bc08a267db5aea78db6f3 (diff)
kill libiberty
Diffstat (limited to 'libiberty/config.table')
-rwxr-xr-xlibiberty/config.table55
1 files changed, 0 insertions, 55 deletions
diff --git a/libiberty/config.table b/libiberty/config.table
deleted file mode 100755
index 00944f3..0000000
--- a/libiberty/config.table
+++ /dev/null
@@ -1,55 +0,0 @@
-case "${host}" in
- rs6000-ibm-aix3.1 | rs6000-ibm-aix)
- frag=mh-aix ;;
- *-*-cxux7*) frag=mh-cxux7 ;;
- *-*-freebsd2.1.*) frag=mh-fbsd21 ;;
- *-*-freebsd2.2.[012]) frag=mh-fbsd21 ;;
- i[345]86-*-windows*) frag=mh-windows ;;
-esac
-
-frags=$frag
-
-# If they didn't specify --enable-shared, don't generate shared libs.
-case "${enable_shared}" in
- yes) shared=yes ;;
- no) shared=no ;;
- "") shared=no ;;
- *) shared=yes ;;
-esac
-if [ "${shared}" = "yes" ]; then
- case "${host}" in
- *-*-cygwin32*) ;;
- hppa*-*-*) frags="${frags} ../../config/mh-papic" ;;
- i[3456]86-*-*) frags="${frags} ../../config/mh-x86pic" ;;
- *-*-*) frags="${frags} ../../config/mh-${host_cpu}pic" ;;
- esac
-fi
-
-echo "# Warning: this fragment is automatically generated" > temp-frag
-
-for frag in ${frags}; do
- case ${frag} in
- ../* )
- if [ ${srcdir} = . ]; then
- [ -n "${with_target_subdir}" ] && frag=../${frag}
- [ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}
- fi
- ;;
- esac
- frag=${srcdir}/${xsrcdir}config/$frag
- if [ -f ${frag} ]; then
- echo "Appending ${frag} to xhost-mkfrag"
- echo "# Following fragment copied from ${frag}" >> temp-frag
- cat ${frag} >> temp-frag
- fi
-done
-
-# record if we want to build shared libs.
-if [ "${shared}" = "yes" ]; then
- echo enable_shared = yes >> temp-frag
-else
- echo enable_shared = no >> temp-frag
-fi
-
-frag=xhost-mkfrag
-${CONFIG_SHELL} ${libiberty_topdir}/move-if-change temp-frag xhost-mkfrag