[build, wpiutil] Switch macos to universal binaries (#4628)

This commit is contained in:
Thad House
2022-11-14 11:36:33 -07:00
committed by GitHub
parent 5a320c326b
commit b53ce1d3f0
6 changed files with 7 additions and 23 deletions

View File

@@ -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";