[#68137] improve semantics of manpages — "Anthony J. Bentley" <anthony@...>
Hi,
1 message
2015/02/17
[#68144] Re: Future of test suites for Ruby — Anthony Crumley <anthony.crumley@...>
FYI...
4 messages
2015/02/17
[#68343] [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault? — ruby@...
Issue #10916 has been reported by why do i need this acct just to create a bug report.
5 messages
2015/02/27
[#68373] Re: [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault?
— "Martin J. Dürst" <duerst@...>
2015/03/02
> * Author: why do i need this acct just to create a bug report
[#68358] [Ruby trunk - Bug #10902] require("enumerator") scans LOAD_PATH 2x on every invocation — [email protected]
Issue #10902 has been updated by Aman Gupta.
3 messages
2015/02/28
[ruby-core:68025] [ruby-trunk - Bug #10830] [Open] LDFLAGS not honoured when linking libruby.so
From:
dam@...
Date:
2015-02-05 14:19:16 UTC
List:
ruby-core #68025
Issue #10830 has been reported by Dagobert Michelsen. ---------------------------------------- Bug #10830: LDFLAGS not honoured when linking libruby.so https://bugs.ruby-lang.org/issues/10830 * Author: Dagobert Michelsen * Status: Open * Priority: Normal * Assignee: * ruby -v: both 2.1.5 and 2.2.0 * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- During configure the libraries are detected with LDFLAGS used e.g. to defined a search direcrtory with -L. During linking of library.so in Makefile.in the line ~~~ $(Q) $(LDSHARED) $(DLDFLAGS) $(OBJS) $(DLDOBJS) $(DTRACE_OBJ) $(SOLIBS) $(EXTSOLIBS) $(OUTFLAG)$@ ~~~ does not use LDFLAGS to find linked libraries (in my case libgmp.so not in a standard place). When changed to this line linking works: ~~~ $(Q) $(LDSHARED) $(DLDFLAGS) $(OBJS) $(DLDOBJS) $(DTRACE_OBJ) $(LDFLAGS) $(SOLIBS) $(EXTSOLIBS) $(OUTFLAG)$@ ~~~ -- https://bugs.ruby-lang.org/