Skip to content

Commit

Permalink
Merge pull request #89726 from doronbehar/ruby-gcc-ref
Browse files Browse the repository at this point in the history
rubyMinimal: don't reference stdenv.cc
  • Loading branch information
matthewbauer committed Jun 11, 2020
2 parents d659f96 + bb8ea13 commit 6590c33
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/development/interpreters/ruby/default.nix
Expand Up @@ -37,6 +37,7 @@ let
, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
, useRailsExpress ? true
, rubygemsSupport ? true
, JitSupport ? true
, zlib, zlibSupport ? true
, openssl, opensslSupport ? true
, gdbm, gdbmSupport ? true
Expand Down Expand Up @@ -118,6 +119,7 @@ let

configureFlags = ["--enable-shared" "--enable-pthread" "--with-soname=ruby_${tag}"]
++ op useRailsExpress "--with-baseruby=${baseruby}/bin/ruby"
++ op (!JitSupport) "--disable-jit-support"
++ op (!docSupport) "--disable-install-doc"
++ ops stdenv.isDarwin [
# on darwin, we have /usr/include/tk.h -- so the configure script detects
Expand Down Expand Up @@ -155,6 +157,9 @@ let
${removeReferencesTo}/bin/remove-references-to \
-t ${stdenv.cc} \
$out/lib/libruby*
${removeReferencesTo}/bin/remove-references-to \
-t ${stdenv.cc} \
$out/${passthru.libPath}/${stdenv.targetPlatform.system}/rbconfig.rb
''
}
# Bundler tries to create this directory
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -9788,6 +9788,8 @@ in
rubyMinimal = ruby.override {
# gem support is minimal overhead
rubygemsSupport = true;
removeReferenceToCC = true;
JitSupport = false;
useRailsExpress = false;
zlibSupport = false;
opensslSupport = false;
Expand Down

0 comments on commit 6590c33

Please sign in to comment.