ActionsLike0
Bug #19005
closedRuby interpreter compiled XCode 14 cannot build some native gems on macOS
Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.7.6p219 (2022-04-12 revision 44c8bfa984) [arm64-darwin21]
Backport:
Description
This seems related to https://bugs.ruby-lang.org/issues/18912 and https://bugs.ruby-lang.org/issues/18981 .
Steps to reproduce:
- Upgrade to XCode 14.
- Compile a new Ruby interpreter. I used the version provided in https://github.com/ruby/ruby/pull/6297 with
./configure --prefix=/tmp/ruby --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline) --enable-shared
. - Confirm that
-Wl,-undefined,dynamic_lookup
is no longer available:
irb(main):001:0> RbConfig::CONFIG['DLDFLAGS']
=> "-Wl,-multiply_defined,suppress"
- Ran
gem install pg_query
(gem install ffi-yajl
will also fail).
Error:
linking shared-object pg_query/pg_query.bundle
Undefined symbols for architecture arm64:
"Init_pg_query", referenced from:
-exported_symbol[s_list] command line option
(maybe you meant: _Init_pg_query)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I can workaround the problem by doing:
gem install pg_query -- --with-ldflags="-Wl,-undefined,dynamic_lookup"
Updated by hsbt (Hiroshi SHIBATA) over 2 years ago
- Related to Bug #18912: Build failure with Xcode 14 and macOS 13 (Ventura) Beta added
- Related to Bug #18981: Backport bundle loader option to stable versions added
Updated by nobu (Nobuyoshi Nakada) over 2 years ago
- Status changed from Open to Feedback
Updated by stanhu (Stan Hu) over 2 years ago
- ruby -v set to ruby 2.7.6p219 (2022-04-12 revision 44c8bfa984) [arm64-darwin21]
Updated by hsbt (Hiroshi SHIBATA) over 2 years ago
- Status changed from Feedback to Open
Updated by nobu (Nobuyoshi Nakada) over 2 years ago
- Backport changed from 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN to 2.7: REQUIRED, 3.0: REQUIRED, 3.1: REQUIRED
Updated by nagachika (Tomoyuki Chikanaga) over 2 years ago
- Backport changed from 2.7: REQUIRED, 3.0: REQUIRED, 3.1: REQUIRED to 2.7: REQUIRED, 3.0: REQUIRED, 3.1: DONE
Updated by hsbt (Hiroshi SHIBATA) over 2 years ago
- Backport changed from 2.7: REQUIRED, 3.0: REQUIRED, 3.1: DONE to 2.7: DONE, 3.0: DONE, 3.1: DONE
Updated by stanhu (Stan Hu) about 2 years ago
- Status changed from 9 to Closed
Updated by Eregon (Benoit Daloze) about 2 years ago
- Related to Bug #19082: Recent gRPC gem fails to build from the source in already released versions added
ActionsLike0