Skip to content

Commit 52b38be

Browse files
committed
test: comment out the darwin workaround
to demonstrate the failing test
1 parent db23ffd commit 52b38be

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

test/rcd_test/ext/mri/extconf.rb

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,15 @@
7979
##
8080
## This returns us to the symbol resolution we had in previous Rubies. It feels gross but may
8181
## be a workaround for gem maintainers until we all figure out a better way to deal with this.
82-
extdldflags = RbConfig::MAKEFILE_CONFIG["EXTDLDFLAGS"].split
83-
if found = extdldflags.index("-bundle_loader")
84-
removed_1 = extdldflags.delete_at(found) # flag
85-
removed_2 = extdldflags.delete_at(found) # and its argument
86-
puts "Removing '#{removed_1} #{removed_2}' from EXTDLDFLAGS"
87-
end
88-
RbConfig::MAKEFILE_CONFIG["EXTDLDFLAGS"] = extdldflags.join(" ")
82+
#
83+
# extdldflags = RbConfig::MAKEFILE_CONFIG["EXTDLDFLAGS"].split
84+
# if found = extdldflags.index("-bundle_loader")
85+
# removed_1 = extdldflags.delete_at(found) # flag
86+
# removed_2 = extdldflags.delete_at(found) # and its argument
87+
# puts "Removing '#{removed_1} #{removed_2}' from EXTDLDFLAGS"
88+
# end
89+
# RbConfig::MAKEFILE_CONFIG["EXTDLDFLAGS"] = extdldflags.join(" ")
90+
#
8991
end
9092
end
9193

0 commit comments

Comments
 (0)