mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[build, wpiutil] Switch macos to universal binaries (#4628)
This commit is contained in:
@@ -31,13 +31,7 @@ public final class RuntimeDetector {
|
||||
} else if (isMac()) {
|
||||
filePrefix = "lib";
|
||||
fileExtension = ".dylib";
|
||||
if (intel32) {
|
||||
filePath = "/osx/x86/";
|
||||
} else if (arm64) {
|
||||
filePath = "/osx/arm64/";
|
||||
} else {
|
||||
filePath = "/osx/x86-64/";
|
||||
}
|
||||
filePath = "/osx/universal/";
|
||||
} else if (isLinux()) {
|
||||
filePrefix = "lib";
|
||||
fileExtension = ".so";
|
||||
|
||||
Reference in New Issue
Block a user