• add support for the Borland C++ Builder (on UWIN)

• add support for the Digital Mars compiler (on UWIN)
• clean up
• describe new build targets and that UWIN sucks
• bump vsn
This commit is contained in:
tg 2007-07-01 21:27:03 +00:00
parent 2e42fa62b6
commit 7004525fcc
3 changed files with 59 additions and 25 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $MirOS: src/bin/mksh/Build.sh,v 1.232 2007/07/01 19:24:11 tg Exp $ # $MirOS: src/bin/mksh/Build.sh,v 1.233 2007/07/01 21:27:02 tg Exp $
#- #-
# Environment used: CC CFLAGS CPPFLAGS LDFLAGS LIBS NOWARN NROFF TARGET_OS # Environment used: CC CFLAGS CPPFLAGS LDFLAGS LIBS NOWARN NROFF TARGET_OS
# CPPFLAGS recognised: MKSH_SMALL MKSH_ASSUME_UTF8 MKSH_NEED_MKNOD MKSH_NOPWNAM # CPPFLAGS recognised: MKSH_SMALL MKSH_ASSUME_UTF8 MKSH_NEED_MKNOD MKSH_NOPWNAM
@ -236,13 +236,14 @@ fi
test x"$TARGET_OS" = x"" && TARGET_OS=`uname -s 2>/dev/null || uname` test x"$TARGET_OS" = x"" && TARGET_OS=`uname -s 2>/dev/null || uname`
warn= warn=
mscx=-Wc, ccpc=-Wc,
ccpl=-Wl,
tsts= tsts=
case $TARGET_OS in case $TARGET_OS in
AIX) AIX)
warn=' and is still experimental' warn=' and is still experimental'
if test x"$LDFLAGS" = x""; then if test x"$LDFLAGS" = x""; then
LDFLAGS="-Wl,-bI:crypt.exp" LDFLAGS="${ccpl}-bI:crypt.exp"
cat >crypt.exp <<-EOF cat >crypt.exp <<-EOF
#! #!
__crypt_r __crypt_r
@ -269,7 +270,8 @@ GNU/kFreeBSD)
HP-UX) HP-UX)
;; ;;
Interix) Interix)
mscx='-X ' ccpc='-X '
ccpl='-Y '
CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE" CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE"
: ${LIBS='-lcrypt'} : ${LIBS='-lcrypt'}
;; ;;
@ -281,7 +283,7 @@ Minix)
CPPFLAGS="$CPPFLAGS -D_MINIX -D_POSIX_SOURCE" CPPFLAGS="$CPPFLAGS -D_MINIX -D_POSIX_SOURCE"
warn=' and will currently not work' warn=' and will currently not work'
# warn=" but might work with the GNU tools" # warn=" but might work with the GNU tools"
# warn="$warn$nl but not with ACK - /usr/bin/cc - yet)" # warn="$warn${nl}but not with ACK - /usr/bin/cc - yet)"
;; ;;
MirBSD) MirBSD)
;; ;;
@ -293,8 +295,11 @@ SunOS)
CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D__EXTENSIONS__" CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D__EXTENSIONS__"
;; ;;
UWIN*) UWIN*)
mscx='-Yc,' ccpc='-Yc,'
ccpl='-Yl,'
tsts=" 3<>/dev/tty" tsts=" 3<>/dev/tty"
warn="; it will compile, but the target"
warn="$warn${nl}platform itself is very flakey/unreliable"
;; ;;
*) *)
warn='; it may or may not work' warn='; it may or may not work'
@ -330,6 +335,10 @@ cat >scn.c <<-'EOF'
ct=sunpro ct=sunpro
#elif defined(__hpux) #elif defined(__hpux)
ct=hpcc ct=hpcc
#elif defined(__BORLANDC__)
ct=bcc
#elif defined(__DMC__)
ct=dmc
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
ct=msc ct=msc
#else #else
@ -342,7 +351,7 @@ test $h = 1 && sed 's/^/[ /' x
eval `cat x` eval `cat x`
rm -f x rm -f x
case $ct in case $ct in
gcc|hpcc|icc|msc|sunpro) ;; bcc|dmc|gcc|hpcc|icc|msc|sunpro) ;;
*) ct=unknown ;; *) ct=unknown ;;
esac esac
$e "$bi==> which compiler we seem to use...$ao $ui$ct$ao" $e "$bi==> which compiler we seem to use...$ao $ui$ct$ao"
@ -368,12 +377,26 @@ test 1 = $HAVE_CAN_COMPILER_WORKS || exit 1
ac_testn compiler_fails '' 'if the compiler does not fail correctly' <<-EOF ac_testn compiler_fails '' 'if the compiler does not fail correctly' <<-EOF
int main(void) { return (thiswillneverbedefinedIhope()); } int main(void) { return (thiswillneverbedefinedIhope()); }
EOF EOF
save_CFLAGS=$CFLAGS if test $HAVE_COMPILER_FAILS = 1; then
CFLAGS="$CFLAGS -Wl,+k" save_CFLAGS=$CFLAGS
ac_testn can_plusk compiler_fails 0 'for the +k linker option' <<-EOF if test $ct = dmc; then
CFLAGS="$CFLAGS ${ccpl}/DELEXECUTABLE"
ac_testn can_delexe compiler_fails 0 'for the /DELEXECUTABLE linker option' <<-EOF
int main(void) { return (0); } int main(void) { return (0); }
EOF EOF
test $HAVE_CAN_PLUSK = 1 || CFLAGS=$save_CFLAGS test $HAVE_CAN_DELEXE = 1 || CFLAGS=$save_CFLAGS
else
CFLAGS="$CFLAGS ${ccpl}+k"
ac_testn can_plusk compiler_fails 0 'for the +k linker option' <<-EOF
int main(void) { return (0); }
EOF
test $HAVE_CAN_PLUSK = 1 || CFLAGS=$save_CFLAGS
fi
ac_testn compiler_still_fails '' 'if the compiler still does not fail correctly' <<-EOF
int main(void) { return (thiswillneverbedefinedIhope()); }
EOF
test $HAVE_COMPILER_STILL_FAILS = 1 && exit 1
fi
if test $ct = sunpro; then if test $ct = sunpro; then
: ${save_NOWARN='-errwarn=%none'} : ${save_NOWARN='-errwarn=%none'}
@ -385,8 +408,14 @@ elif test $ct = hpcc; then
save_NOWARN= save_NOWARN=
DOWARN=+We DOWARN=+We
elif test $ct = msc; then elif test $ct = msc; then
save_NOWARN="${mscx}/w" save_NOWARN="${ccpc}/w"
DOWARN="${mscx}/WX" DOWARN="${ccpc}/WX"
elif test $ct = dmc; then
save_NOWARN="${ccpc}-w"
DOWARN="${ccpc}-wx"
elif test $ct = bcc; then
save_NOWARN="${ccpc}-w"
DOWARN="${ccpc}-w!"
else else
: ${save_NOWARN='-Wno-error'} : ${save_NOWARN='-Wno-error'}
ac_flags 0 wnoerror "$save_NOWARN" ac_flags 0 wnoerror "$save_NOWARN"
@ -436,16 +465,21 @@ elif test $ct = sunpro; then
elif test $ct = hpcc; then elif test $ct = hpcc; then
ac_flags 1 agcc -Agcc 'for support of GCC extensions' ac_flags 1 agcc -Agcc 'for support of GCC extensions'
ac_flags 1 ac99 -AC99 'for support of ISO C99' ac_flags 1 ac99 -AC99 'for support of ISO C99'
elif test $ct = dmc; then
ac_flags 1 decl "${ccpc}-r" 'for strict prototype checks'
ac_flags 1 schk "${ccpc}-s" 'for stack overflow checking'
elif test $ct = bcc; then
ac_flags 1 strpool "${ccpc}-d" 'if we can enable string pooling'
elif test $ct = msc; then elif test $ct = msc; then
ac_flags 1 strpool "${ccpc}/GF" 'if we can enable string pooling'
cat >x <<-'EOF' cat >x <<-'EOF'
int main(void) { char test[64] = ""; return (*test); } int main(void) { char test[64] = ""; return (*test); }
EOF EOF
ac_flags 1 strpool "${mscx}/GF" 'if we can enable string pooling' ac_flags - 1 stackon "${ccpc}/GZ" 'if we can enable stack checks' <x
ac_flags - 1 stackon "${mscx}/GZ" 'if we can enable stack checks' <x ac_flags - 1 stckall "${ccpc}/Ge" 'stack checks for all functions' <x
ac_flags - 1 stckall "${mscx}/Ge" 'stack checks for all functions' <x ac_flags - 1 secuchk "${ccpc}/GS" 'for compiler security checks' <x
ac_flags - 1 secuchk "${mscx}/GS" 'for compiler security checks' <x ac_flags 1 wall "${ccpc}/Wall" 'to enable all warnings'
ac_flags 1 wall "${mscx}/Wall" 'to enable all warnings' ac_flags 1 wp64 "${ccpc}/Wp64" 'to enable 64-bit warnings'
ac_flags 1 wp64 "${mscx}/Wp64" 'to enable 64-bit warnings'
fi fi
# flags common to a subset of compilers # flags common to a subset of compilers
if test 1 = $i; then if test 1 = $i; then

View File

@ -1,4 +1,4 @@
# $MirOS: src/bin/mksh/check.t,v 1.119 2007/07/01 19:04:52 tg Exp $ # $MirOS: src/bin/mksh/check.t,v 1.120 2007/07/01 21:27:03 tg Exp $
# $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $ # $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $
@ -7,7 +7,7 @@
# http://www.research.att.com/~gsf/public/ifs.sh # http://www.research.att.com/~gsf/public/ifs.sh
expected-stdout: expected-stdout:
@(#)MIRBSD KSH R29 2007/06/27 @(#)MIRBSD KSH R29 2007/07/01
description: description:
Check version of shell. Check version of shell.
category: pdksh category: pdksh

4
sh.h
View File

@ -8,8 +8,8 @@
/* $OpenBSD: c_test.h,v 1.4 2004/12/20 11:34:26 otto Exp $ */ /* $OpenBSD: c_test.h,v 1.4 2004/12/20 11:34:26 otto Exp $ */
/* $OpenBSD: tty.h,v 1.5 2004/12/20 11:34:26 otto Exp $ */ /* $OpenBSD: tty.h,v 1.5 2004/12/20 11:34:26 otto Exp $ */
#define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.152 2007/07/01 16:49:18 tg Exp $" #define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.153 2007/07/01 21:27:03 tg Exp $"
#define MKSH_VERSION "R29 2007/06/27" #define MKSH_VERSION "R29 2007/07/01"
#if HAVE_SYS_PARAM_H #if HAVE_SYS_PARAM_H
#include <sys/param.h> #include <sys/param.h>