]> gcc.gnu.org Git - gcc.git/commit - configure.ac
configure.in: Remove target-libstdc++-v3 from noconfigdirs for *-*-netware...
authorJan Beulich <jbeulich@novell.com>
Fri, 3 Sep 2004 18:10:08 +0000 (18:10 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 3 Sep 2004 18:10:08 +0000 (11:10 -0700)
commit61fec9ffac35d5cb530c9f1e757e7796d8488281
tree243e6c82b40956cbdbedeb566a077006e70cd744
parent04efec81275ba055bb910cfd43d0bb919f21a940
configure.in: Remove target-libstdc++-v3 from noconfigdirs for *-*-netware...

/
        * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
        *-*-netware, but add target-libmudflap.
        Consolidate *-*-netware targets (of which really only i?86 exists)
        into a single entry.
        * configure: Likewise.
gcc/
        * config.gcc: Resurrect NetWare as a target. Handle special case of
        Novell linker to be used (specified through --with-ld=) and threading
        model of either Posix (default) or NKS.
        * config/i386/i386.c (ix86_return_pops_args): Conditionalize popping
        of incoming hidden argument on KEEP_AGGREGATE_RETURN_POINTER.
        * config/i386/i386.h (KEEP_AGGREGATE_RETURN_POINTER): New.
        * config/i386/netware.c, config/i386/netware.h: New.
        * config/i386/nwld.c, config/i386/nwld.h: New.
        * config/i386/netware-crt0.c: New.
        * config/i386/netware-libgcc.c: New.
        * config/i386/netware-libgcc.def: New.
        * config/i386/netware-libgcc.exp: New.
        * config/i386/t-netware, config/i386/t-nwld: New.
        * gthr-nks.h: New.
        * doc/install.texi: Document NKS threading model.
gcc/cp/
        * g++spec.c (MATH_LIBRARY_PROFILE): Default to MATH_LIBRARY rather
        than "-lm".
gcc/testsuite/
        * g++.dg/abi/bitfield5.C: Use -mno-ms-bitfields.
        * g++.old-deja/g++.jason/thunk2.C: xfail for NetWare.
        * g++.old-deja/g++.law/profile1.C: xfail for NetWare.
        * g++.old-deja/g++.other/store-expr1.C: xfail for NetWare.
        * gcc.c-torture/compile/20001109-1.c: xfail for NetWare.
        * gcc.c-torture/compile/20001109-2.c: xfail for NetWare.
        * gcc.c-torture/execute/multi-ix.c: Use __builtin_bzero rather than
        the non-portable bzero.
        * gcc.dg/20010912-1.c: xfail for NetWare.
        * gcc.dg/20020426-2.c: xfail for NetWare.
        * gcc.dg/20021014-1.c: xfail for NetWare.
        * gcc.dg/20021018-1.c: xfail for NetWare.
        * gcc.dg/20030213-1.c: xfail for NetWare.
        * gcc.dg/20030225-1.c: xfail for NetWare.
        * gcc.dg/20030708-1.c: xfail for NetWare.
        * gcc.dg/builtins-config.h: Also exclude NetWare.
        * gcc.dg/format/format.h: Define restrict only if not already defined.
        * gcc.dg/nest.c: xfail for NetWare.
        * gcc.dg/special/gcsec-1.c: Don't pass -static for NetWare.
        * lib/target-supports.exp (check_visibility_available): Exclude
        NetWare.
fixincludes/
        * inclhack.def: Suppress exception_structure and math_exception
        for NetWare headers.
        * fixincl.x: Regenerate.
libstdc++-v3/
        * crossconfig.m4: Add NetWare as a target.
        * configure: Regenerate.

From-SVN: r87040
47 files changed:
ChangeLog
configure
configure.in
fixincludes/ChangeLog
fixincludes/fixincl.x
fixincludes/inclhack.def
gcc/ChangeLog
gcc/config.gcc
gcc/config/i386/i386.c
gcc/config/i386/i386.h
gcc/config/i386/netware-crt0.c [new file with mode: 0644]
gcc/config/i386/netware-libgcc.c [new file with mode: 0644]
gcc/config/i386/netware-libgcc.def [new file with mode: 0644]
gcc/config/i386/netware-libgcc.exp [new file with mode: 0644]
gcc/config/i386/netware.c [new file with mode: 0644]
gcc/config/i386/netware.h [new file with mode: 0644]
gcc/config/i386/nwld.c [new file with mode: 0644]
gcc/config/i386/nwld.h [new file with mode: 0644]
gcc/config/i386/t-netware [new file with mode: 0644]
gcc/config/i386/t-nwld [new file with mode: 0644]
gcc/cp/ChangeLog
gcc/cp/g++spec.c
gcc/doc/install.texi
gcc/gthr-nks.h [new file with mode: 0644]
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/abi/bitfield5.C
gcc/testsuite/g++.old-deja/g++.jason/thunk2.C
gcc/testsuite/g++.old-deja/g++.law/profile1.C
gcc/testsuite/g++.old-deja/g++.other/store-expr1.C
gcc/testsuite/gcc.c-torture/compile/20001109-1.c
gcc/testsuite/gcc.c-torture/compile/20001109-2.c
gcc/testsuite/gcc.c-torture/execute/multi-ix.c
gcc/testsuite/gcc.dg/20010912-1.c
gcc/testsuite/gcc.dg/20020426-2.c
gcc/testsuite/gcc.dg/20021014-1.c
gcc/testsuite/gcc.dg/20021018-1.c
gcc/testsuite/gcc.dg/20030213-1.c
gcc/testsuite/gcc.dg/20030225-1.c
gcc/testsuite/gcc.dg/20030708-1.c
gcc/testsuite/gcc.dg/builtins-config.h
gcc/testsuite/gcc.dg/format/format.h
gcc/testsuite/gcc.dg/nest.c
gcc/testsuite/gcc.dg/special/gcsec-1.c
gcc/testsuite/lib/target-supports.exp
libstdc++-v3/ChangeLog
libstdc++-v3/configure
libstdc++-v3/crossconfig.m4
This page took 0.077509 seconds and 5 git commands to generate.