We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f06c46 commit 4ad4e5cCopy full SHA for 4ad4e5c
_gem/lib/go_gem/rake_task.rb
@@ -81,7 +81,11 @@ def self.build_env_vars
81
ldflags << " -undefined dynamic_lookup"
82
end
83
84
- cflags = "#{RbConfig::CONFIG["CFLAGS"]} -I#{RbConfig::CONFIG["rubyarchhdrdir"]} -I#{RbConfig::CONFIG["rubyhdrdir"]}"
+ cflags = [
85
+ RbConfig::CONFIG["CFLAGS"],
86
+ "-I#{RbConfig::CONFIG["rubyarchhdrdir"]}",
87
+ "-I#{RbConfig::CONFIG["rubyhdrdir"]}",
88
+ ].join(" ")
89
90
# FIXME: Workaround for GitHub Actions
91
if ENV["GITHUB_ACTIONS"]
0 commit comments