Changeset 391
- Timestamp:
- 06/16/07 07:34:12 (2 years ago)
- Files:
-
- version_0/ext/extconf.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
version_0/ext/extconf.rb
r390 r391 142 142 # on Unix we need a g++ link, not gcc. 143 143 CONFIG['LDSHARED'] = "$(CXX) -shared" 144 145 # Modify the mkmf constant LINK_SO so the generated shared object is stripped. 146 # You might think modifying CONFIG['LINK_SO'] would be a better way to do this, 147 # but it doesn't work because mkmf doesn't look at CONFIG['LINK_SO'] again after 148 # it initializes. 149 linkso = Object.send :remove_const, "LINK_SO" 150 LINK_SO = linkso + "; strip $@" 144 151 end 145 152
