ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:79368] [Ruby trunk Bug#13175] Building --with-jemalloc on FreeBSD fails
       [not found] <redmine.issue-13175.20170131161842@ruby-lang.org>
@ 2017-01-31 16:18 ` brnrd
  2017-02-01  5:29 ` [ruby-core:79374] [Ruby trunk Bug#13175][Rejected] " naruse
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: brnrd @ 2017-01-31 16:18 UTC (permalink / raw
  To: ruby-core

Issue #13175 has been reported by Bernard Spil.

----------------------------------------
Bug #13175: Building --with-jemalloc on FreeBSD fails
https://bugs.ruby-lang.org/issues/13175

* Author: Bernard Spil
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: 2.3.3
* Backport: 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN
----------------------------------------
Building Ruby 2.3 on FreeBSD 11 with --with-jemalloc leads to linking issues.

As of FreeBSD 10.0 jemalloc is in FreeBSD's libc and thus -ljemalloc will trigger a linktime error.

Removing -ljemalloc from the linker solves the issue

+@@ -4015,9 +4016,6 @@ AS_CASE(["$target_os"],
+ AS_CASE(["$with_gmp: $SOLIBS "], [no:* | *' -lgmp '*|*' $(LIBS) '*], [],
+ 	[SOLIBS="-lgmp $SOLIBS"])
+ 
+-AS_CASE(["$with_jemalloc: $LIBS "], [no:* | *' -ljemalloc '*], [],
+-	[LIBS="-ljemalloc $LIBS"])
+-
+ MINIOBJS="$MINIDLNOBJ"
+ 
+ AS_CASE(["$THREAD_MODEL"],



-- 
https://bugs.ruby-lang.org/

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

* [ruby-core:79374] [Ruby trunk Bug#13175][Rejected] Building --with-jemalloc on FreeBSD fails
       [not found] <redmine.issue-13175.20170131161842@ruby-lang.org>
  2017-01-31 16:18 ` [ruby-core:79368] [Ruby trunk Bug#13175] Building --with-jemalloc on FreeBSD fails brnrd
@ 2017-02-01  5:29 ` naruse
  2017-02-03 23:25 ` [ruby-core:79421] [Ruby trunk Bug#13175][Closed] " nobu
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: naruse @ 2017-02-01  5:29 UTC (permalink / raw
  To: ruby-core

Issue #13175 has been updated by Yui NARUSE.

Status changed from Open to Rejected

You needn't --with-jemalloc; don't specify --with-jemalloc on FreeBSD.

----------------------------------------
Bug #13175: Building --with-jemalloc on FreeBSD fails
https://bugs.ruby-lang.org/issues/13175#change-62801

* Author: Bernard Spil
* Status: Rejected
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: 2.3.3
* Backport: 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN
----------------------------------------
Building Ruby 2.3 on FreeBSD 11 with --with-jemalloc leads to linking issues.

As of FreeBSD 10.0 jemalloc is in FreeBSD's libc and thus -ljemalloc will trigger a linktime error.

Removing -ljemalloc from the linker solves the issue

+@@ -4015,9 +4016,6 @@ AS_CASE(["$target_os"],
+ AS_CASE(["$with_gmp: $SOLIBS "], [no:* | *' -lgmp '*|*' $(LIBS) '*], [],
+ 	[SOLIBS="-lgmp $SOLIBS"])
+ 
+-AS_CASE(["$with_jemalloc: $LIBS "], [no:* | *' -ljemalloc '*], [],
+-	[LIBS="-ljemalloc $LIBS"])
+-
+ MINIOBJS="$MINIDLNOBJ"
+ 
+ AS_CASE(["$THREAD_MODEL"],



-- 
https://bugs.ruby-lang.org/

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

* [ruby-core:79421] [Ruby trunk Bug#13175][Closed] Building --with-jemalloc on FreeBSD fails
       [not found] <redmine.issue-13175.20170131161842@ruby-lang.org>
  2017-01-31 16:18 ` [ruby-core:79368] [Ruby trunk Bug#13175] Building --with-jemalloc on FreeBSD fails brnrd
  2017-02-01  5:29 ` [ruby-core:79374] [Ruby trunk Bug#13175][Rejected] " naruse
@ 2017-02-03 23:25 ` nobu
  2017-04-30 13:35 ` [ruby-core:80938] [Ruby trunk Bug#13175] " usa
  2017-05-09 14:50 ` [ruby-core:81065] " nagachika00
  4 siblings, 0 replies; 5+ messages in thread
From: nobu @ 2017-02-03 23:25 UTC (permalink / raw
  To: ruby-core

Issue #13175 has been updated by Nobuyoshi Nakada.

Description updated
Status changed from Rejected to Closed

----------------------------------------
Bug #13175: Building --with-jemalloc on FreeBSD fails
https://bugs.ruby-lang.org/issues/13175#change-62848

* Author: Bernard Spil
* Status: Closed
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: 2.3.3
* Backport: 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN
----------------------------------------
Building Ruby 2.3 on FreeBSD 11 with --with-jemalloc leads to linking issues.

As of FreeBSD 10.0 jemalloc is in FreeBSD's libc and thus -ljemalloc will trigger a linktime error.

Removing -ljemalloc from the linker solves the issue

```diff
+@@ -4015,9 +4016,6 @@ AS_CASE(["$target_os"],
+ AS_CASE(["$with_gmp: $SOLIBS "], [no:* | *' -lgmp '*|*' $(LIBS) '*], [],
+ 	[SOLIBS="-lgmp $SOLIBS"])
+ 
+-AS_CASE(["$with_jemalloc: $LIBS "], [no:* | *' -ljemalloc '*], [],
+-	[LIBS="-ljemalloc $LIBS"])
+-
+ MINIOBJS="$MINIDLNOBJ"
+ 
+ AS_CASE(["$THREAD_MODEL"],
```



-- 
https://bugs.ruby-lang.org/

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

* [ruby-core:80938] [Ruby trunk Bug#13175] Building --with-jemalloc on FreeBSD fails
       [not found] <redmine.issue-13175.20170131161842@ruby-lang.org>
                   ` (2 preceding siblings ...)
  2017-02-03 23:25 ` [ruby-core:79421] [Ruby trunk Bug#13175][Closed] " nobu
@ 2017-04-30 13:35 ` usa
  2017-05-09 14:50 ` [ruby-core:81065] " nagachika00
  4 siblings, 0 replies; 5+ messages in thread
From: usa @ 2017-04-30 13:35 UTC (permalink / raw
  To: ruby-core

Issue #13175 has been updated by usa (Usaku NAKAMURA).

Backport changed from 2.2: REQUIRED, 2.3: REQUIRED, 2.4: REQUIRED to 2.2: REQUIRED, 2.3: DONE, 2.4: REQUIRED

ruby_2_3 r58515 merged revision(s) 57490.

----------------------------------------
Bug #13175: Building --with-jemalloc on FreeBSD fails
https://bugs.ruby-lang.org/issues/13175#change-64596

* Author: spil (Bernard Spil)
* Status: Closed
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: 2.3.3
* Backport: 2.2: REQUIRED, 2.3: DONE, 2.4: REQUIRED
----------------------------------------
Building Ruby 2.3 on FreeBSD 11 with --with-jemalloc leads to linking issues.

As of FreeBSD 10.0 jemalloc is in FreeBSD's libc and thus -ljemalloc will trigger a linktime error.

Removing -ljemalloc from the linker solves the issue

```diff
+@@ -4015,9 +4016,6 @@ AS_CASE(["$target_os"],
+ AS_CASE(["$with_gmp: $SOLIBS "], [no:* | *' -lgmp '*|*' $(LIBS) '*], [],
+ 	[SOLIBS="-lgmp $SOLIBS"])
+ 
+-AS_CASE(["$with_jemalloc: $LIBS "], [no:* | *' -ljemalloc '*], [],
+-	[LIBS="-ljemalloc $LIBS"])
+-
+ MINIOBJS="$MINIDLNOBJ"
+ 
+ AS_CASE(["$THREAD_MODEL"],
```



-- 
https://bugs.ruby-lang.org/

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

* [ruby-core:81065] [Ruby trunk Bug#13175] Building --with-jemalloc on FreeBSD fails
       [not found] <redmine.issue-13175.20170131161842@ruby-lang.org>
                   ` (3 preceding siblings ...)
  2017-04-30 13:35 ` [ruby-core:80938] [Ruby trunk Bug#13175] " usa
@ 2017-05-09 14:50 ` nagachika00
  4 siblings, 0 replies; 5+ messages in thread
From: nagachika00 @ 2017-05-09 14:50 UTC (permalink / raw
  To: ruby-core

Issue #13175 has been updated by nagachika (Tomoyuki Chikanaga).

Backport changed from 2.2: REQUIRED, 2.3: DONE, 2.4: REQUIRED to 2.2: REQUIRED, 2.3: DONE, 2.4: DONE

ruby_2_4 r58627 merged revision(s) 57490.

----------------------------------------
Bug #13175: Building --with-jemalloc on FreeBSD fails
https://bugs.ruby-lang.org/issues/13175#change-64715

* Author: spil (Bernard Spil)
* Status: Closed
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: 2.3.3
* Backport: 2.2: REQUIRED, 2.3: DONE, 2.4: DONE
----------------------------------------
Building Ruby 2.3 on FreeBSD 11 with --with-jemalloc leads to linking issues.

As of FreeBSD 10.0 jemalloc is in FreeBSD's libc and thus -ljemalloc will trigger a linktime error.

Removing -ljemalloc from the linker solves the issue

```diff
+@@ -4015,9 +4016,6 @@ AS_CASE(["$target_os"],
+ AS_CASE(["$with_gmp: $SOLIBS "], [no:* | *' -lgmp '*|*' $(LIBS) '*], [],
+ 	[SOLIBS="-lgmp $SOLIBS"])
+ 
+-AS_CASE(["$with_jemalloc: $LIBS "], [no:* | *' -ljemalloc '*], [],
+-	[LIBS="-ljemalloc $LIBS"])
+-
+ MINIOBJS="$MINIDLNOBJ"
+ 
+ AS_CASE(["$THREAD_MODEL"],
```



-- 
https://bugs.ruby-lang.org/

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

end of thread, other threads:[~2017-05-09 14:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <redmine.issue-13175.20170131161842@ruby-lang.org>
2017-01-31 16:18 ` [ruby-core:79368] [Ruby trunk Bug#13175] Building --with-jemalloc on FreeBSD fails brnrd
2017-02-01  5:29 ` [ruby-core:79374] [Ruby trunk Bug#13175][Rejected] " naruse
2017-02-03 23:25 ` [ruby-core:79421] [Ruby trunk Bug#13175][Closed] " nobu
2017-04-30 13:35 ` [ruby-core:80938] [Ruby trunk Bug#13175] " usa
2017-05-09 14:50 ` [ruby-core:81065] " nagachika00

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).