about summary refs log tree commit diff
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* Configuring for i386 is no longer supported.Carlos O'Donell2013-04-171-10/+1
| | | | | | | | | | | | | | | | | We no longer support configuring for i386, nor do we elide such a configuration to i686. Configuring with i386-* is a failure, and we provide an example of how to fix that. --- 2013-04-17 Carlos O'Donell <carlos@redhat.com> * configure.in: Remove i386 configure warning. Remove i386 case. * configure: Regenerate. * sysdeps/i386/configure.in: Raise error if config_machine is i386. Add example to error message. * sysdeps/i386/configure: Regenerate.
* i386: Fail at configure time for i386 builds.Carlos O'Donell2013-04-061-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change does two things: * Treats a target i386-* as if it were i686. * Fails configure if the user is generating code for i386. We no longer support i386 code-generation because the i386 lacks the atomic operations we need in glibc. You can still configure for i386-*, but you get i686 code. You can't build with --march=i386, --mtune=i386 or a compiler that defaults to i386 code-generation. I've added two i386 entries in the master todo list to discuss merging and renaming: http://sourceware.org/glibc/wiki/Development_Todo/Master#i386 The failure modes are fail-safe here. You compile for i386, get i686, and try to run on i386 and it fails. The configure log has a warning saying we elided to i686. There is no situation that I can see where we run into any serious problems. The patch makes the current state better in that we get less confused users and we build successfully in more default configurations. The next enhancement would be to add --march=i?86 as suggested in #c20 of BZ#10062 for any i?86-* builds, which would solve the problem of a 32-bit compiler that defaults to i386 code-gen and glibc configured for i686-* target. Which previously failed at build time, and now will fail at configure time (requires adding --march=i686). Updated NEWS with BZ #10060 and #10062. No regressions. --- 2013-04-06 Carlos O'Donell <carlos@redhat.com> [BZ #10060, #10062] * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro. * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and fail configure if __sync_val_compare_and_swap is not inlined. * sysdeps/i386/configure: Regenerate. * configure.in: Build for i686 when configured for i386. * configure: Regenerate. * README: Remove i386 reference.
* Move system-specific settings out of toplevel configure.in and config.make.in.Joseph Myers2013-03-201-11/+1
|
* Add support for rtld directory different from slib directoryAndreas Schwab2013-03-191-0/+1
|
* Don't bother checking for $CC option to accept ISO C89.Thomas Schwinge2013-01-251-0/+5
|
* configure: Default to CPP="$CC -E" unless overridden.Thomas Schwinge2013-01-251-0/+17
|
* Fix multiarch handling in sysdeps generation.Roland McGrath2013-01-111-4/+10
|
* Add --enable-hardcoded-path-in-tests configure optionH.J. Lu2013-01-111-0/+7
|
* Remove some old cruft variables from configure.Roland McGrath2013-01-101-2/+3
|
* Fix C++ header directory detection for non-standard paths.Adam Conrad2012-11-241-6/+5
| | | | | | Stop assuming specific path layouts for C++ headers, and instead use an autodetection method that looks for paths with '/[cg]++' in the g++ include list.
* Properly check linker -z XXX supportH.J. Lu2012-11-211-60/+11
|
* Fix ifunc configure check for 64-bit targetsAndreas Schwab2012-11-181-2/+6
|
* Support --with-pkgversion and --with-bugurl.Joseph Myers2012-11-091-0/+7
|
* Require an exact Autoconf version.Roland McGrath2012-11-021-1/+1
|
* BZ#14743: Move clock_* symbols from librt to libc.Roland McGrath2012-10-241-0/+6
|
* change ifunc assembly test to a link testMike Frysinger2012-10-241-10/+21
| | | | | | | | | | | | | The test currently tests the binutils frontend support which passes for all versions of binutils we currently require (2.20+). It doesn't test the backend which is required for ifunc to actually work, and which most targets don't yet support. Change the assembly code so that when we link it, we get a file that has ifunc relocations if the backend supports it. That way we can test to see if binutils supports everything we need. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* drop -q flag when using grepMike Frysinger2012-10-241-3/+3
| | | | | | We don't currently want to rely on the -q option to grep. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Remove relics of support for configuring in the source directory.Joseph Myers2012-10-191-7/+1
|
* Use $CXX not cc1plus to locate C++ headers.Joseph Myers2012-10-101-3/+2
|
* Clean up conditionalize of ld.so.cache support.Roland McGrath2012-10-031-0/+3
|
* Remove $(have-cpp-asm-debuginfo) checkH.J. Lu2012-09-151-1/+0
|
* Improve C++ header location detection (bug 13966)Allan McRae2012-09-061-6/+4
|
* Check for gawk >= 3.0 (bug 13412)Allan McRae2012-09-021-1/+3
|
* Add --disable-build-nscd configure option.Roland McGrath2012-08-221-0/+10
|
* BZ#13696: Add --disable-nscd configure option.Roland McGrath2012-08-221-0/+14
|
* Fix sed configure check for newer sed --version output.Dmitry V. Levin2012-08-221-1/+1
|
* Make sysheaders available in config.make.Roland McGrath2012-08-171-0/+1
|
* Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}.Marek Polacek2012-08-021-24/+2
|
* configure.in <sysdeps resolving>: Correct printing Implies_before.Thomas Schwinge2012-07-231-1/+1
|
* Get rid of ASM_GLOBAL_DIRECTIVE.Marek Polacek2012-07-101-26/+5
|
* Use AC_LANG_SOURCE to fix autoconf warnings.Carlos O'Donell2012-06-221-2/+2
|
* Respect --localstatedir for /var/db parent directory.Roland McGrath2012-06-221-0/+2
|
* Weaken PIE configure test to a compile test.Joseph Myers2012-05-301-12/+2
|
* Don't use header files in glibc configureH.J. Lu2012-05-251-0/+5
|
* Add --enable-systemtap configuration to define static probe points.Roland McGrath2012-05-251-0/+24
|
* Filter out unknown symbols in stack-protector test.Joseph Myers2012-05-211-0/+7
|
* BZ#10375: Configure magic to use -fno-stack-protector if needed.Roland McGrath2012-05-161-0/+34
|
* BZ#10375: Configure magic to use -U_FORTIFY_SOURCE if needed.Roland McGrath2012-05-161-0/+16
|
* Update Texinfo version requirement.Joseph Myers2012-05-161-1/+1
|
* configure change to handle Implies-{before,after} filesRoland McGrath2012-05-151-32/+37
|
* Make sunrpc code usable againAndreas Jaeger2012-05-101-0/+11
| | | | | | | | New configure option --enable-obsolete-rpc makes the deprecated RPC headers and functions available at compile time as they were before version 2.14. This option will be removed at some time in the future after the TI-RPC library becomes fully sufficient for the needs of existing applications.
* Always run check-abiAndreas Jaeger2012-04-291-8/+0
| | | | | Remove the configure options for running of check-abi and always run it as part of the testsuite
* Don't handle unsupported OSes in configure (base_os settings).Joseph Myers2012-04-261-12/+2
|
* Remove --as-needed configure test.Joseph Myers2012-04-251-17/+0
|
* Don't handle libgcc_s suffixes.Joseph Myers2012-04-241-15/+1
|
* Remove sysdeps/elf support from configure.Andreas Jaeger2012-03-281-18/+1
| | | | * configure.in: Remove support for elf directories in sysdeps.
* Disable use of FMA instructions in branredAndreas Schwab2012-03-211-0/+9
|
* Weaken -fstack-protector configure test to a compile test.Thomas Schwinge2012-03-211-12/+4
|
* Use autoconf macro for testing compiler options with empty input.Joseph Myers2012-03-211-3/+2
|
* Use sysdeps/*/preconfigure fragments from main source tree.Roland McGrath2012-03-161-10/+4
|