mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
Update 7z.so builds for macos so it supports older versions of macos
This commit is contained in:
parent
c1617fc6a7
commit
e7c8d8449b
14
dependencies/7zip/macx/Version.txt
vendored
14
dependencies/7zip/macx/Version.txt
vendored
@ -1,5 +1,19 @@
|
||||
7zip 23.01 built from the original sources using the Format7zF bundle
|
||||
|
||||
x86_64 build (built in an Apple silicon mac):
|
||||
|
||||
export MACOSX_DEPLOYMENT_TARGET=10.13
|
||||
export CC="clang -arch x86_64"
|
||||
export CXX="clang++ -arch x86_64"
|
||||
make -j -f makefile.gcc
|
||||
|
||||
arm64 build (built in an Apple silicon mac):
|
||||
|
||||
export MACOSX_DEPLOYMENT_TARGET=10.13 // minimum will be 11
|
||||
export CC="clang -arch arm64"
|
||||
export CXX="clang++ -arch arm64"
|
||||
make -j -f makefile.gcc
|
||||
|
||||
Universal binary created using lipo:
|
||||
|
||||
lipo -create -arch arm64 arm64/7z.so -arch x86_64 x86_64/7z.so -o universal/7z.so
|
BIN
dependencies/7zip/macx/arm64/7z.so
vendored
BIN
dependencies/7zip/macx/arm64/7z.so
vendored
Binary file not shown.
BIN
dependencies/7zip/macx/universal/7z.so
vendored
BIN
dependencies/7zip/macx/universal/7z.so
vendored
Binary file not shown.
BIN
dependencies/7zip/macx/x86_64/7z.so
vendored
BIN
dependencies/7zip/macx/x86_64/7z.so
vendored
Binary file not shown.
Loading…
Reference in New Issue
Block a user