summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-02-27 15:38:43 -0500
committermidipix <writeonce@midipix.org>2016-02-27 16:16:49 -0500
commitf080946d1445c9e8da0b57215e2062501ad43954 (patch)
tree30aa180bfef9191e2ce9ffd270605ad24e957552 /configure
parent434ff49ab8993a5d40f1efac0caa189134e179eb (diff)
downloadpemagine-f080946d1445c9e8da0b57215e2062501ad43954.tar.bz2
pemagine-f080946d1445c9e8da0b57215e2062501ad43954.tar.xz
build system: use the term 'compiler' rather than 'toolchain' where applicable.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure34
1 files changed, 17 insertions, 17 deletions
diff --git a/configure b/configure
index c53cc2e..0fd9f26 100755
--- a/configure
+++ b/configure
@@ -44,7 +44,7 @@ init_vars()
mb_host=$HOST
mb_target=$TARGET
mb_arch=$ARCH
- mb_toolchain=$TOOLCHAIN
+ mb_compiler=$COMPILER
mb_sysroot=$SYSROOT
mb_cross_compile=$CROSS_COMPILE
mb_shell=$SHELL
@@ -117,7 +117,7 @@ common_defaults()
[ -z "$mb_host" ] && mb_host=$mb_default_host
[ -z "$mb_target" ] && mb_target=$mb_default_target
[ -z "$mb_arch" ] && mb_arch=$mb_default_arch
- [ -z "$mb_toolchain" ] && mb_toolchain=$mb_default_toolchain
+ [ -z "$mb_compiler" ] && mb_compiler=$mb_default_compiler
[ -z "$mb_sysroot" ] && mb_sysroot=$mb_default_sysroot
[ -z "$mb_cross_compile" ] && mb_cross_compile=$mb_default_cross_compile
[ -z "$mb_shell" ] && mb_shell=$mb_default_shell
@@ -167,10 +167,10 @@ common_defaults()
fi
fi
- # toolchain
- if [ x"$mb_toolchain" != x ]; then
+ # compiler
+ if [ x"$mb_compiler" != x ]; then
if [ x"$mb_native_cc" = x ]; then
- mb_native_cc=$mb_toolchain
+ mb_native_cc=$mb_compiler
fi
fi
}
@@ -183,7 +183,7 @@ native_defaults()
$CC -dM -E - < /dev/null > /dev/null || exit 2
fi
- # toolchain
+ # compiler
[ -z "$mb_native_cc" ] && mb_native_cc=$CC
[ -z "$mb_native_cc" ] && mb_native_cc='cc'
$mb_native_cc -dM -E - < /dev/null > /dev/null 2>/dev/null || mb_native_cc=
@@ -202,19 +202,19 @@ native_defaults()
exit 2
fi
- if [ x"$mb_toolchain" = x ]; then
- $mb_native_cc -dM -E - < /dev/null | grep '__clang__' > /dev/null && mb_toolchain='clang'
+ if [ x"$mb_compiler" = x ]; then
+ $mb_native_cc -dM -E - < /dev/null | grep '__clang__' > /dev/null && mb_compiler='clang'
fi
- if [ x"$mb_toolchain" = x ]; then
- $mb_native_cc -dM -E - < /dev/null | grep '__GCC' > /dev/null && mb_toolchain='gcc'
+ if [ x"$mb_compiler" = x ]; then
+ $mb_native_cc -dM -E - < /dev/null | grep '__GCC' > /dev/null && mb_compiler='gcc'
fi
- if [ x"$mb_toolchain" = x ]; then
- $mb_native_cc -dM -E - < /dev/null | grep '__CPARSER__' > /dev/null && mb_toolchain='cparser'
+ if [ x"$mb_compiler" = x ]; then
+ $mb_native_cc -dM -E - < /dev/null | grep '__CPARSER__' > /dev/null && mb_compiler='cparser'
fi
- if [ x"$mb_toolchain" = x ]; then
+ if [ x"$mb_compiler" = x ]; then
error_msg "config error: could not identify the native compiler."
exit 2
fi
@@ -275,7 +275,7 @@ config_copy()
-e 's^@host@^'"$mb_host"'^g' \
-e 's^@target@^'"$mb_target"'^g' \
-e 's^@arch@^'"$mb_arch"'^g' \
- -e 's^@toolchain@^'"$mb_toolchain"'^g' \
+ -e 's^@compiler@^'"$mb_compiler"'^g' \
-e 's^@sysroot@^'"$mb_sysroot"'^g' \
-e 's^@cross_compile@^'"$mb_cross_compile"'^g' \
-e 's^@shell@^'"$mb_shell"'^g' \
@@ -330,7 +330,7 @@ config_host()
make host.tag && return 0
error_msg "configure was able to generate a Makefile for the selected host,"
- error_msg "however the host-targeting toolchain was found to be missing"
+ error_msg "however the host-targeting compiler was found to be missing"
error_msg "at least one of the required headers or features."
exit 2
}
@@ -391,8 +391,8 @@ for arg ; do
--arch=*)
mb_arch=${arg#*=}
;;
- --toolchain=*)
- mb_toolchain=${arg#*=}
+ --compiler=*)
+ mb_compiler=${arg#*=}
;;
--sysroot=*)
mb_sysroot=${arg#*=}