Bug #9213
closed
mkmf.rb emits invalid destination directory name for mswin32/64
Added by arton (Akio Tajima) about 11 years ago.
Updated about 5 years ago.
Description
The install process of traditional extended library (=non gem) uses extconf.rb for creating Makefile and install the library by (n)make install.
However it does not work correctly because of FileUtil.mkdir met bad directory name as 'c:c:/...'.
This is caused by DESTDIR and prefix combination.
When one does not specify DESTDIR, rbconfig.rb create it as 'DESTDIR = TOPDIR && TOPDIR[/\A[a-z]:/i] || '' unless defined? DESTDIR' #=> 'C:' or 'D:'.
By the other hand CONFIG['prefix'] is (TOPDIR || DESTDIR + '/usr') so the prefixdir also contains 'c:' or 'd:' ...
The definition for install directories in mkmf.rb is defined as both DESTDIR and CONFIG['prefix'] directory for example '$(DESTDIR)$(vendorarchdir)$(target_prefix)'.
It causes the double drive letter name 'c:c:...'.
While there are some workarounds as using setup.rb or gem, it's harmful for the testing phase of extended libraries.
I think the DESTDIR setting is for DOS like prefix.
So this is the patch.
--- mkmf.rb.org 2013-12-05 02:38:38.508908700 +0900
+++ mkmf.rb 2013-12-05 02:38:59.788774499 +0900
@@ -1849,6 +1849,7 @@ VPATH = #{vpath.join(CONFIG['PATH_SEPARA
prefix = mkintpath(CONFIG["prefix"])
if destdir = prefix[$dest_prefix_pattern, 1]
mk << "\nDESTDIR = #{destdir}\n"
+ prefix = prefix[destdir.size..-1]
end
mk << "prefix = #{with_destdir(prefix).unspace}\n"
CONFIG.each do |key, var|
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r44019.
Akio, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
mkmf.rb: strip destdir from prefix
- Backport changed from 1.9.3: UNKNOWN, 2.0.0: UNKNOWN to 1.9.3: UNKNOWN, 2.0.0: REQUIRED
- Backport changed from 1.9.3: UNKNOWN, 2.0.0: REQUIRED to 1.9.3: UNKNOWN, 2.0.0: DONE
r44019 was backported to ruby_2_0_0 at r44367.
副作用の報告です。
Sample code¶
sample.c¶
void Init_Sample() {
}
extconf.rb¶
require "mkmf"
create_makefile("Sample")
Operation¶
C:\TMP>ruby -v
1: ruby 2.0.0p451 (2014-02-24) [i386-mswin32]
C:\TMP>ruby extconf.rb
1: creating Makefile
C:\TMP>nmake /N
1:
2: Microsoft (R) Program Maintenance Utility Version 6.00.9782.0
3: Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
4:
5: echo generating Sample-i386-mswin32.def
6: \ruby200\bin\ruby -e "puts 'EXPORTS', 'Init_Sample'" > Sample-i386-mswin32.def
7: echo compiling sample.c
8: cl -nologo -I. -Ic:/ruby200/include/ruby-2.0.0/i386-mswin32 -Ic:/ruby200/include/ruby-2.0.0/ruby/backward -Ic:/ruby200/include/ruby-2.0.0 -I. -MD -Zi -W2 -O2b2xg- -G6 -Zm600 -Fosample.obj -c -Tcsample.c
9: echo linking shared-object Sample.so
10: \ruby200\bin\ruby -run -e rm -- -f Sample.so
11: cl -nologo -LD -FeSample.so sample.obj msvcrt-ruby200.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib imagehlp.lib shlwapi.lib -link -incremental:no -debug -opt:ref -opt:icf -incremental:no -debug -opt:ref -opt:icf -dll -libpath:. -libpath:/ruby200/lib -implib:Sample-i386-mswin32.lib -pdb:Sample-i386-mswin32.pdb -def:Sample-i386-mswin32.def
6行目と 10行目、$(RUBY) の展開結果にドライブ名が付いていません。
- Status changed from Closed to Assigned
- Assignee set to nobu (Nobuyoshi Nakada)
- Target version changed from 2.1.0 to 2.2.0
memo: 2.0.0 has not backported r41648 and r41756.
- Target version deleted (
2.2.0)
- Status changed from Assigned to Closed
- Backport deleted (
1.9.3: UNKNOWN, 2.0.0: DONE)
Also available in: Atom
PDF
Like0
Like0Like0Like0Like0Like0Like0Like0Like0