unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#11251: Use -Wl,-rpath instead of -R on GNU/Linux with GCC 4.6
@ 2012-04-16 10:01 Ludovic Courtès
  2012-04-16 10:49 ` bug#11251: Use -Wl, -rpath " Chong Yidong
  2012-04-18  2:14 ` Chong Yidong
  0 siblings, 2 replies; 4+ messages in thread
From: Ludovic Courtès @ 2012-04-16 10:01 UTC (permalink / raw)
  To: 11251

[-- Attachment #1: Type: text/plain, Size: 86 bytes --]

Hello,

The patch below fixes linking of ‘temacs’ on GNU/Linux with GCC 4.6.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 577 bytes --]

=== modified file 'configure.in'
--- configure.in	2011-09-26 18:38:31 +0000
+++ configure.in	2012-04-16 09:52:23 +0000
@@ -3406,7 +3406,7 @@ case "$opsys" in
   ## had not yet been defined and was expanded to null.  Hence LD_SWITCH_SYSTEM
   ## had different values in configure (in ac_link) and src/Makefile.in.
   ## It seems clearer therefore to put this piece in LD_SWITCH_SYSTEM_TEMACS.
-  gnu-linux) LD_SWITCH_SYSTEM_TEMACS="\$(LD_SWITCH_X_SITE_AUX)" ;;
+  gnu-linux) LD_SWITCH_SYSTEM_TEMACS="\$(LD_SWITCH_X_SITE_AUX_RPATH)" ;;
 
   *) LD_SWITCH_SYSTEM_TEMACS= ;;
 esac


[-- Attachment #3: Type: text/plain, Size: 803 bytes --]


GCC 4.5 used to ignore ‘-R’, but GCC 4.6 rejects it:

--8<---------------cut here---------------start------------->8---
$ echo "int main () { return 0; }" > t.c

$ ./result/bin/gcc t.c -R/foo
gcc: unrecognized option '-R/foo'
$ echo $?
0
$ ./result/bin/gcc --version | head -1
gcc (GCC) 4.5.3

$ gcc t.c -R/foo
gcc: error: unrecognized option ‘-R’
$ echo $?
1
$ gcc --version | head -1
gcc (GCC) 4.6.2
--8<---------------cut here---------------end--------------->8---

(This is why the ‘build’ job at <http://hydra.nixos.org/eval/605870> has
been failing since the standard build environment switched from GCC 4.5
to 4.6 last month.)

In fact, the above should be applied to all GNU variants, so *gnu* may
be more appropriate than gnu-linux.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#11251: Use -Wl, -rpath instead of -R on GNU/Linux with GCC 4.6
  2012-04-16 10:01 bug#11251: Use -Wl,-rpath instead of -R on GNU/Linux with GCC 4.6 Ludovic Courtès
@ 2012-04-16 10:49 ` Chong Yidong
  2012-04-16 16:31   ` Glenn Morris
  2012-04-18  2:14 ` Chong Yidong
  1 sibling, 1 reply; 4+ messages in thread
From: Chong Yidong @ 2012-04-16 10:49 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 11251

ludo@gnu.org (Ludovic Courtès) writes:

> The patch below fixes linking of ‘temacs’ on GNU/Linux with GCC 4.6.

Thanks.  I guess we'll have to put this in the emacs-24 brach.  It's
late in the pretest, but that can't be helped.  Does anyone see any
problem with the patch?


(BTW, maybe we don't need to AC_SUBST the LD_SWITCH_X_SITE_AUX and
LD_SWITCH_X_SITE_AUX_RPATH variables; they don't seem to be used
anywhere outside of configure.)





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#11251: Use -Wl, -rpath instead of -R on GNU/Linux with GCC 4.6
  2012-04-16 10:49 ` bug#11251: Use -Wl, -rpath " Chong Yidong
@ 2012-04-16 16:31   ` Glenn Morris
  0 siblings, 0 replies; 4+ messages in thread
From: Glenn Morris @ 2012-04-16 16:31 UTC (permalink / raw)
  To: Chong Yidong; +Cc: Ludovic Courtès, 11251

Chong Yidong wrote:

> (BTW, maybe we don't need to AC_SUBST the LD_SWITCH_X_SITE_AUX and
> LD_SWITCH_X_SITE_AUX_RPATH variables; they don't seem to be used
> anywhere outside of configure.)

Yes they are. Eg

case "$opsys" in
  netbsd|openbsd)
   LD_SWITCH_SYSTEM="\$(LD_SWITCH_X_SITE_AUX_RPATH) $LD_SWITCH_SYSTEM"
  ;;
esac

Note escaped \$, so these references appear in the Makefile unexpanded.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#11251: Use -Wl, -rpath instead of -R on GNU/Linux with GCC 4.6
  2012-04-16 10:01 bug#11251: Use -Wl,-rpath instead of -R on GNU/Linux with GCC 4.6 Ludovic Courtès
  2012-04-16 10:49 ` bug#11251: Use -Wl, -rpath " Chong Yidong
@ 2012-04-18  2:14 ` Chong Yidong
  1 sibling, 0 replies; 4+ messages in thread
From: Chong Yidong @ 2012-04-18  2:14 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 11251

ludo@gnu.org (Ludovic Courtès) writes:

> The patch below fixes linking of ‘temacs’ on GNU/Linux with GCC 4.6.

Committed to the emacs-24 branch.  Thanks.





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-04-18  2:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-16 10:01 bug#11251: Use -Wl,-rpath instead of -R on GNU/Linux with GCC 4.6 Ludovic Courtès
2012-04-16 10:49 ` bug#11251: Use -Wl, -rpath " Chong Yidong
2012-04-16 16:31   ` Glenn Morris
2012-04-18  2:14 ` Chong Yidong

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).