fix: use attributes to check the feature existence

This commit is contained in:
Sherzod Mutalov 2025-08-03 11:12:37 +05:00 committed by Ramon Perez
parent 280ea1aa9f
commit 5f06a35f4e

View File

@ -103,6 +103,21 @@ pub fn normalize_path(path: &Path) -> PathBuf {
ret ret
} }
pub fn can_override_npx() -> bool {
// we need to check the CPU for the AVX2 instruction support if we are running under the MacOS
// with Intel CPU. We can override `npx` command with `bun` only if CPU is
// supporting AVX2, otherwise we need to use default `npx` binary
#[cfg(all(target_os = "macos", any(target_arch = "x86", target_arch = "x86_64")))]
{
if !is_x86_feature_detected!("avx2") {
log::warn!("Your CPU doesn't support AVX2 instruction, default npx binary will be used");
return false; // we cannot override npx with bun binary
}
}
true // by default, we can override npx with bun binary
}
#[tauri::command] #[tauri::command]
pub fn write_yaml( pub fn write_yaml(
app: tauri::AppHandle, app: tauri::AppHandle,
@ -196,17 +211,3 @@ pub fn is_library_available(library: &str) -> bool {
} }
} }
pub fn can_override_npx() -> bool {
// we need to check the CPU for the AVX2 instruction support if we are running under the MacOS
// with Intel CPU. We can override `npx` command with `bun` only if CPU is
// supporting AVX2, otherwise we need to use default `npx` binary
if cfg!(all(target_os="macos", any(target_arch = "x86", target_arch = "x86_64")))
{
if !is_x86_feature_detected!("avx2") {
log::warn!("Your CPU doesn't support AVX2 instruction, default npx binary will be used");
return false; // we cannot override npx with bun binary
}
}
true // by default, we can override npx with bun binary
}