summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-12-03 07:28:02 (GMT)
committerAlexey Neyman <stilor@att.net>2018-12-04 00:17:25 (GMT)
commitd9afcd80fc3feb83684c530adc7413e5ed17cf98 (patch)
tree6c6d934e26095d8a23df53c8ff16a00da8a04fec /scripts
parent03b29ba5b00a617ff7c53ca1f0910a03a4929239 (diff)
Warn if architecture is empty on x86/32bit
as that defaults to i386, which will fail with glibc (and likely other libcs). Fixes #617. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/arch/x86.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/build/arch/x86.sh b/scripts/build/arch/x86.sh
index 471d377..0538d66 100644
--- a/scripts/build/arch/x86.sh
+++ b/scripts/build/arch/x86.sh
@@ -10,7 +10,11 @@ CT_DoArchTupleValues() {
arch="${CT_ARCH_ARCH}"
[ -z "${arch}" ] && arch="${CT_ARCH_TUNE}"
case "${arch}" in
- "") CT_TARGET_ARCH=i386;;
+ "")
+ CT_DoLog WARN "Architecture level is not specified for 32-bit x86; defaulting to i386."
+ CT_DoLog WARN "This may not be supported by the C library."
+ CT_TARGET_ARCH=i386
+ ;;
i386|i486|i586|i686) CT_TARGET_ARCH="${arch}";;
winchip*) CT_TARGET_ARCH=i486;;
pentium|pentium-mmx|c3*) CT_TARGET_ARCH=i586;;