Project

General

Profile

Actions

Bug #7163

closed

Chomp problem in pkg_config of mkmf.rb (ruby 1.9.3 P286)

Added by raylinn@gmail.com (ray linn) over 11 years ago. Updated over 11 years ago.

Status:
Closed
Target version:
-
ruby -v:
Backport:
[ruby-core:47998]

Description

when compiled the ext packages under mingw64 + MSYS, mkmf reports error like this:

"gcc -o conftest -Ic:/ruby64/include/ruby-1.9.1/x64-mingw32 -Ic:/ruby64/include/ruby-1.9.1/ruby/backward -Ic:/ruby64/include/ruby-1.9.1 -I. -I./.. -D_FILE_OFFSET_BITS=64 -O2 -finline-functions -I/usr/local/include -D__USE_MINGW_ANSI_STDIO -IC:/msys/1.0/local/include
conftest.c -L. -Lc:/ruby64/lib -L. -L/usr/local/lib -LC:/msys/1.0/local/lib -lssl -lcrypto
-lx64-msvcrt-ruby191 -lshell32 -lws2_32 -limagehlp "
gcc: fatal error: no input files
compilation terminated.

the root cause is several enter characters are added in this compile command, these enters are from the pkg_config in mkmf.rb, add chomp in the following line in pkg_config function, issue is fixed.

cflags = get['cflags']
ldflags = get['libs']
libs = get['libs-only-l']

as
cflags = get['cflags'].chomp
ldflags = get['libs'].chomp
libs = get['libs-only-l'].chomp

the attached is mkmf.log before/after the change.


Files

mkmf.bad.log (760 Bytes) mkmf.bad.log before the mkmf.rb change raylinn@gmail.com (ray linn), 10/15/2012 03:01 PM
mkmf.good.log (2.04 KB) mkmf.good.log after the mkmf.rb change raylinn@gmail.com (ray linn), 10/15/2012 03:01 PM
Actions

Also available in: Atom PDF

Like0
Like0Like0