ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:71757] [Ruby trunk - Bug #11753] [Open] Building ruby-git on Arch Linux eats all memory on ./configure
       [not found] <redmine.issue-11753.20151130142733@ruby-lang.org>
@ 2015-11-30 14:27 ` bar.hofesh
  2015-11-30 14:45 ` [ruby-core:71758] [Ruby trunk - Bug #11753] " bar.hofesh
  2015-12-01  4:13 ` [ruby-core:71768] [Ruby trunk - Bug #11753] [Third Party's Issue] " nobu
  2 siblings, 0 replies; 3+ messages in thread
From: bar.hofesh @ 2015-11-30 14:27 UTC (permalink / raw)
  To: ruby-core

Issue #11753 has been reported by Bar Hofesh.

----------------------------------------
Bug #11753: Building ruby-git on Arch Linux eats all memory on ./configure 
https://bugs.ruby-lang.org/issues/11753

* Author: Bar Hofesh
* Status: Open
* Priority: Normal
* Assignee: 
* ruby -v: 
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
Hi, 

I'm trying to build Ruby from sources.

What I tried:

1) Build from git using git clone, autoconf, ./configure
2) Build with RVM versions 2.2.1, 2.2-head, 2.1.5, ruby-head

All have failed when reaching the "./configure" phase.
It seems that all memory is getting eat up and the system hangs unless a quick "Ctrl + C" is pressed to stop the process.

Notes:

* I had ruby installed and working until trying to re-build
* I had a system restore which left most of /home/ with wrong permissions (was taken care of but maybe Ruby's configure needs some files with +x which don't have them right now?)
* Other programs which relays on "./configure" scripts work and build without issues.



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

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

* [ruby-core:71758] [Ruby trunk - Bug #11753] Building ruby-git on Arch Linux eats all memory on ./configure
       [not found] <redmine.issue-11753.20151130142733@ruby-lang.org>
  2015-11-30 14:27 ` [ruby-core:71757] [Ruby trunk - Bug #11753] [Open] Building ruby-git on Arch Linux eats all memory on ./configure bar.hofesh
@ 2015-11-30 14:45 ` bar.hofesh
  2015-12-01  4:13 ` [ruby-core:71768] [Ruby trunk - Bug #11753] [Third Party's Issue] " nobu
  2 siblings, 0 replies; 3+ messages in thread
From: bar.hofesh @ 2015-11-30 14:45 UTC (permalink / raw)
  To: ruby-core

Issue #11753 has been updated by Bar Hofesh.


Bar Hofesh wrote:
> Hi, 
> 
> I'm trying to build Ruby from sources.
> 
> What I tried:
> 
> 1) Build from git using git clone, autoconf, ./configure
> 2) Build with RVM versions 2.2.1, 2.2-head, 2.1.5, ruby-head
> 
> All have failed when reaching the "./configure" phase.
> It seems that all memory is getting eat up and the system hangs unless a quick "Ctrl + C" is pressed to stop the process.
> 
> Notes:
> 
> * I had ruby installed and working until trying to re-build
> * I had a system restore which left most of /home/ with wrong permissions (was taken care of but maybe Ruby's configure needs some files with +x which don't have them right now?)
> * Other programs which relays on "./configure" scripts work and build without issues.

Ok, using the "echo here and there" debug method I got to the part where it is getting stuck:

`
# Use a proper internal environment variable to ensure we don't fall
  # into an infinite loop, continuously re-executing ourselves.
  echo "Testing 1"
  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
    _as_can_reexec=no; export _as_can_reexec;
echo "Testing 2"
  # We cannot yet assume a decent shell, so we have to provide a
# neutralization value for shells without unset; and this also
# works around shells that cannot unset nonexistent variables.
# Preserve -v and -x to the replacement shell.`

I see "Testing 1"
But not "Testing 2"

----------------------------------------
Bug #11753: Building ruby-git on Arch Linux eats all memory on ./configure 
https://bugs.ruby-lang.org/issues/11753#change-55168

* Author: Bar Hofesh
* Status: Open
* Priority: Normal
* Assignee: 
* ruby -v: 
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
Hi, 

I'm trying to build Ruby from sources.

What I tried:

1) Build from git using git clone, autoconf, ./configure
2) Build with RVM versions 2.2.1, 2.2-head, 2.1.5, ruby-head

All have failed when reaching the "./configure" phase.
It seems that all memory is getting eat up and the system hangs unless a quick "Ctrl + C" is pressed to stop the process.

Notes:

* I had ruby installed and working until trying to re-build
* I had a system restore which left most of /home/ with wrong permissions (was taken care of but maybe Ruby's configure needs some files with +x which don't have them right now?)
* Other programs which relays on "./configure" scripts work and build without issues.



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

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

* [ruby-core:71768] [Ruby trunk - Bug #11753] [Third Party's Issue] Building ruby-git on Arch Linux eats all memory on ./configure
       [not found] <redmine.issue-11753.20151130142733@ruby-lang.org>
  2015-11-30 14:27 ` [ruby-core:71757] [Ruby trunk - Bug #11753] [Open] Building ruby-git on Arch Linux eats all memory on ./configure bar.hofesh
  2015-11-30 14:45 ` [ruby-core:71758] [Ruby trunk - Bug #11753] " bar.hofesh
@ 2015-12-01  4:13 ` nobu
  2 siblings, 0 replies; 3+ messages in thread
From: nobu @ 2015-12-01  4:13 UTC (permalink / raw)
  To: ruby-core

Issue #11753 has been updated by Nobuyoshi Nakada.

Status changed from Open to Third Party's Issue

It's a part of standard `AC_INIT()`.
Probably a bug of Arch Linux which `autoconf` does not support yet.

Please report it to [Arch Linux](https://bugs.archlinux.org/) and/or [`autoconf`](http://www.gnu.org/software/autoconf/autoconf.html#bug),
with exact versions of the OS and `autoconf`.

----------------------------------------
Bug #11753: Building ruby-git on Arch Linux eats all memory on ./configure 
https://bugs.ruby-lang.org/issues/11753#change-55178

* Author: Bar Hofesh
* Status: Third Party's Issue
* Priority: Normal
* Assignee: 
* ruby -v: 
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
Hi, 

I'm trying to build Ruby from sources.

What I tried:

1) Build from git using git clone, autoconf, ./configure
2) Build with RVM versions 2.2.1, 2.2-head, 2.1.5, ruby-head

All have failed when reaching the "./configure" phase.
It seems that all memory is getting eat up and the system hangs unless a quick "Ctrl + C" is pressed to stop the process.

Notes:

* I had ruby installed and working until trying to re-build
* I had a system restore which left most of /home/ with wrong permissions (was taken care of but maybe Ruby's configure needs some files with +x which don't have them right now?)
* Other programs which relays on "./configure" scripts work and build without issues.



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

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

end of thread, other threads:[~2015-12-01  3:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <redmine.issue-11753.20151130142733@ruby-lang.org>
2015-11-30 14:27 ` [ruby-core:71757] [Ruby trunk - Bug #11753] [Open] Building ruby-git on Arch Linux eats all memory on ./configure bar.hofesh
2015-11-30 14:45 ` [ruby-core:71758] [Ruby trunk - Bug #11753] " bar.hofesh
2015-12-01  4:13 ` [ruby-core:71768] [Ruby trunk - Bug #11753] [Third Party's Issue] " nobu

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