forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * lthostflags.m4: New file. (ACX_LT_HOST_FLAGS): Define. libgfortran/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac: Invoke ACX_LT_HOST_FLAGS. * Makefile.am (LTLDFLAGS): Use lt_host_flags. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. libgomp/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac: Invoke ACX_LT_HOST_FLAGS. * Makefile.am (libgomp_la_LDFLAGS): Use lt_host_flags. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. * testsuite/Makefile.in: Regenerate. libjava/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac: Invoke ACX_LT_HOST_FLAGS. * configure.host (libgcj_sublib_ltflags): Use lt_host_flags. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. * gcj/Makefile.in: Regenerate. * include/Makefile.in: Regenerate. * testsuite/Makefile.in: Regenerate. libobjc/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac (extra_ldflags_libobjc): Invoke ACX_LT_HOST_FLAGS. * Makefile.in (lt_host_flags): Import AC_SUBST'd value. * aclocal.m4: Regenerate. * configure: Regenerate. libquadmath/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac: Invoke ACX_LT_HOST_FLAGS. * Makefile.am (libquadmath_la_LDFLAGS): Use lt_host_flags. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. libssp/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac: Invoke ACX_LT_HOST_FLAGS. * Makefile.am (libssp_la_LDFLAGS): Use lt_host_flags. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. libstdc++-v3/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac: Invoke ACX_LT_HOST_FLAGS. * configure.host (OPT_LDFLAGS): Use lt_host_flags for cygming. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. * doc/Makefile.in: Regenerate. * include/Makefile.in: Regenerate. * libsupc++/Makefile.in: Regenerate. * po/Makefile.in: Regenerate. * python/Makefile.in: Regenerate. * src/Makefile.in: Regenerate. * testsuite/Makefile.in: Regenerate. lto-plugin/ChangeLog: 2010-12-06 Dave Korn <[email protected]> PR target/40125 PR lto/46695 * configure.ac: Invoke ACX_LT_HOST_FLAGS. * Makefile.am (liblto_plugin_la_LDFLAGS): Use lt_host_flags but override -bindir setting. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167480 138bc75d-0d04-0410-961f-82ee72b054a4
- Loading branch information
davek
committed
Dec 6, 2010
1 parent
13b9987
commit 8c35d26
Showing
60 changed files
with
503 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
2010-12-06 Dave Korn <[email protected]> | ||
|
||
PR target/40125 | ||
PR lto/46695 | ||
* lthostflags.m4: New file. | ||
(ACX_LT_HOST_FLAGS): Define. | ||
|
||
2010-12-02 Dave Korn <[email protected]> | ||
|
||
* mh-cygwin (LDFLAGS): Turn up stack allocation to 12MB. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
dnl Copyright (C) 2010 Free Software Foundation, Inc. | ||
dnl This file is free software, distributed under the terms of the GNU | ||
dnl General Public License. As a special exception to the GNU General | ||
dnl Public License, this file may be distributed as part of a program | ||
dnl that contains a configuration script generated by Autoconf, under | ||
dnl the same distribution terms as the rest of that program. | ||
|
||
dnl usage: ACX_LT_HOST_FLAGS([default_flags]) | ||
dnl Defines and AC_SUBSTs lt_host_flags | ||
|
||
|
||
AC_DEFUN([ACX_LT_HOST_FLAGS], [ | ||
AC_REQUIRE([AC_CANONICAL_SYSTEM]) | ||
case $host in | ||
*-cygwin* | *-mingw*) | ||
# 'host' will be top-level target in the case of a target lib, | ||
# we must compare to with_cross_host to decide if this is a native | ||
# or cross-compiler and select where to install dlls appropriately. | ||
if test -n "$with_cross_host" && | ||
test x"$with_cross_host" != x"no"; then | ||
lt_host_flags='-no-undefined -bindir "$(toolexeclibdir)"'; | ||
else | ||
lt_host_flags='-no-undefined -bindir "$(bindir)"'; | ||
fi | ||
;; | ||
*) | ||
lt_host_flags=[$1] | ||
;; | ||
esac | ||
AC_SUBST(lt_host_flags) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
2010-12-06 Dave Korn <[email protected]> | ||
|
||
PR target/40125 | ||
PR lto/46695 | ||
* configure.ac: Invoke ACX_LT_HOST_FLAGS. | ||
* Makefile.am (LTLDFLAGS): Use lt_host_flags. | ||
* aclocal.m4: Regenerate. | ||
* configure: Regenerate. | ||
* Makefile.in: Regenerate. | ||
|
||
2010-11-16 Francois-Xavier Coudert <[email protected]> | ||
Tobias Burnus <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2010-12-06 Dave Korn <[email protected]> | ||
|
||
PR target/40125 | ||
PR lto/46695 | ||
* configure.ac: Invoke ACX_LT_HOST_FLAGS. | ||
* Makefile.am (libgomp_la_LDFLAGS): Use lt_host_flags. | ||
* aclocal.m4: Regenerate. | ||
* configure: Regenerate. | ||
* Makefile.in: Regenerate. | ||
* testsuite/Makefile.in: Regenerate. | ||
|
||
2010-12-02 Jakub Jelinek <[email protected]> | ||
|
||
PR fortran/46753 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
2010-12-06 Dave Korn <[email protected]> | ||
|
||
PR target/40125 | ||
PR lto/46695 | ||
* configure.ac: Invoke ACX_LT_HOST_FLAGS. | ||
* configure.host (libgcj_sublib_ltflags): Use lt_host_flags. | ||
* aclocal.m4: Regenerate. | ||
* configure: Regenerate. | ||
* Makefile.in: Regenerate. | ||
* gcj/Makefile.in: Regenerate. | ||
* include/Makefile.in: Regenerate. | ||
* testsuite/Makefile.in: Regenerate. | ||
|
||
2010-11-09 Rainer Orth <[email protected]> | ||
|
||
* testsuite/libjava.jvmti/jvmti.exp (gcj_jvmti_compile_cxx_to_o): | ||
|
Oops, something went wrong.