-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macOS の dylib 向けに rpath を追加 #251
macOS の dylib 向けに rpath を追加 #251
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こっちのほうがいいかも
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PGTM!!
Co-authored-by: qwerty2501 <939468+qwerty2501@users.noreply.github.com>
確かにです。変更しました! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
内容
macOS の dylib に rpath として
@loader_path/
を追加しました。以前のコメント #203 (comment) で、macOS の dylib について rpath の追加をしなくても良いということを言ったのですが、その後、ビルド済みのエンジンでは問題ないと思われるものの、ビルドしていない状態のエンジンで
--voicelib_dir
オプションでコアの場所を指定するユースケースでは特に rpath を追加した方が良いと感じました。以前の CMake の設定を改めて確認すると
@loader_path/
を rpath として追加していたので、これと同様の設定を行いました。voicevox_core/core/CMakeLists.txt
Lines 104 to 109 in 7ff2e7f
関連 PR
ref #203
その他