diff options
author | Andreas Tobler <a.tobler@schweiz.org> | 2007-05-20 10:34:05 +0000 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2007-05-20 12:34:05 +0200 |
commit | 536307155bf5097c448125d694191ccccc9fc38b (patch) | |
tree | 3ebc8443613c9af9453483fbd67724d06ef1f6ec /boehm-gc/Makefile.am | |
parent | 6495bc0b8df118643ca7aa1d9f311eb2f0344e3b (diff) | |
download | gcc-536307155bf5097c448125d694191ccccc9fc38b.zip gcc-536307155bf5097c448125d694191ccccc9fc38b.tar.gz gcc-536307155bf5097c448125d694191ccccc9fc38b.tar.bz2 |
configure.ac: Introduce extra_ldflags_libgc.
2007-05-20 Andreas Tobler <a.tobler@schweiz.org>
* configure.ac: Introduce extra_ldflags_libgc. Use it for Darwin.
* configure: Regenerate.
* Makefile.am (libgc_la_LDFLAGS): Use extra_ldflags_libgc.
* Makefile.in: Regenerate.
* include/Makefile.in: Regenerate.
* include/private/gcconfig.h: Enable MPROTECT_VDB for all Darwin
targets. Remove comments. Prepare ppc64 support for Darwin.
From-SVN: r124870
Diffstat (limited to 'boehm-gc/Makefile.am')
-rw-r--r-- | boehm-gc/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/boehm-gc/Makefile.am b/boehm-gc/Makefile.am index c31d67a..57b0bcf 100644 --- a/boehm-gc/Makefile.am +++ b/boehm-gc/Makefile.am @@ -33,11 +33,13 @@ mips_sgi_mach_dep.s mips_ultrix_mach_dep.s powerpc_darwin_mach_dep.s \ rs6000_mach_dep.s sparc_mach_dep.S sparc_netbsd_mach_dep.s \ sparc_sunos4_mach_dep.s ia64_save_regs_in_stack.s +extra_ldflags_libgc = @extra_ldflags_libgc@ + # Include THREADLIBS here to ensure that the correct versions of # linuxthread semaphore functions get linked: libgcjgc_la_LIBADD = @addobjs@ $(THREADLIBS) $(UNWINDLIBS) libgcjgc_la_DEPENDENCIES = @addobjs@ -libgcjgc_la_LDFLAGS = -version-info 1:2:0 -rpath $(toolexeclibdir) +libgcjgc_la_LDFLAGS = $(extra_ldflags_libgc) -version-info 1:2:0 -rpath $(toolexeclibdir) libgcjgc_convenience_la_LIBADD = @addobjs@ libgcjgc_convenience_la_DEPENDENCIES = @addobjs@ |