From bf7448d00003876cd6f8fdb3c3edbaaa5977a211 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Fri, 20 Dec 2024 22:11:47 +0900 Subject: [PATCH] =?UTF-8?q?feat!:=20fix=20up=20#802:=20C=20API=E3=81=AErpa?= =?UTF-8?q?th=E8=A8=AD=E5=AE=9A=E3=82=92=E5=89=8A=E9=99=A4=20(#898)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #802 により不要となった、 #203 と #251 の設定を削除する。 --- crates/voicevox_core_c_api/build.rs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 crates/voicevox_core_c_api/build.rs diff --git a/crates/voicevox_core_c_api/build.rs b/crates/voicevox_core_c_api/build.rs deleted file mode 100644 index 28eb7c04c..000000000 --- a/crates/voicevox_core_c_api/build.rs +++ /dev/null @@ -1,12 +0,0 @@ -// TODO: #802 の時点でiOS以外不要になっているはずなので、このbuild.rsは丸ごと消す -// (iOSのためにbuild_util/make_ios_xcframework.bashの修正は必要) -fn main() { - #[cfg(target_os = "linux")] - println!("cargo:rustc-link-arg=-Wl,-rpath,$ORIGIN"); - - #[cfg(any(target_os = "macos", target_os = "ios"))] - { - println!("cargo:rustc-link-arg=-Wl,-rpath,@loader_path/"); - println!("cargo:rustc-link-arg=-Wl,-install_name,@rpath/libvoicevox_core.dylib"); - } -}