mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
configure.ac: use the correct argument
for --compress-debug-sections. I thought "no" is the correct one because configure.ac has `AS_IF([test "x$compress_debug_sections" != xno]`, but it wasn't the case. This commit is needed to resolve errors like: /usr/bin/x86_64-linux-gnu-ld: invalid --compress-debug-sections option: `no' collect2: error: ld returned 1 exit status git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64326 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
422f4e3e1b
commit
25c79f446d
1 changed files with 1 additions and 1 deletions
|
@ -543,7 +543,7 @@ AS_IF([test "$GCC" = yes], [
|
|||
])
|
||||
AS_IF([test "x$compress_debug_sections" != xno], [
|
||||
RUBY_APPEND_OPTION(DLDFLAGS, ${linker_flag}--compress-debug-sections=$compress_debug_sections)
|
||||
RUBY_APPEND_OPTION(MJIT_DLDFLAGS_NOCOMPRESS, ${linker_flag}--compress-debug-sections=no)
|
||||
RUBY_APPEND_OPTION(MJIT_DLDFLAGS_NOCOMPRESS, ${linker_flag}--compress-debug-sections=none)
|
||||
])
|
||||
|
||||
AS_CASE(["$target_os"],[mingw*], [
|
||||
|
|
Loading…
Add table
Reference in a new issue