-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compile task modifies RbConfig values #202
Comments
For context, this caused a fairly complex issue in TruffleRuby: oracle/truffleruby#2586 |
This issue was introduced in f48d669 / #191, cc @larskanis |
In particular this breaks using Bundler (except the Bundler shipped with TruffleRuby, that works fine because there is then a single Bundler version) + the latest TruffleRuby release (22.0), and that's only fixable here. |
@larskanis Can we use |
As written in #191, rubygems is using the same mechanism of changing
I think so. |
Right, it is unfortunate RubyGems uses that, and it seems from a long time ago.
That would be great :) |
Could @bjfish , @eregon or someone try implementing #202 (comment) approach and confirm whether the approach works with TruffleRuby? |
PR to fix it in RubyGems: rubygems/rubygems#5626 |
closes: GH-202 Instead of creating `.rake-compiler-siteconf.rb` to override `RbConfig::MAKEFILE_CONFIG` and `RbConfig::CONFIG`, set environment variables to `make install` command. Since `RbConfig` is suppose to be readonly, we shouldn't overwrite its values. Additionally, this update addresses a bug caused by `.rake-compiler-siteconf.rb`. The file's hardcoded destination path causes `rake-compiler` to consistently create files in that location, even if the project is renamed or moved. Consequently, changes to the gem project's path do not trigger the file task to update the file. This fix resolves this issue. --------- Co-authored-by: Sutou Kouhei <kou@clear-code.com>
The compile task currently modifies
RbConfig
values which should be avoided since these are intended to be read only and can cause issues for other users:rake-compiler/lib/rake/extensiontask.rb
Lines 148 to 151 in 2b14662
The text was updated successfully, but these errors were encountered: