Build: Make Mac packaging architecture-agnostic

Rename the ARMV8_BUILD CMake variable to SECONDARY_BUILD, and modify the
makemacpkg script so that it allows any architecture in a primary or
secondary build.  The idea is that Apple Silicon users can package an
arm64 primary build and a secondary x86_64 build, and Intel users can
package an x86_64 primary build and a secondary arm64 build, using the
same procedure.

Also simplify the iOS build instructions, using the
CMAKE_OSX_ARCHITECTURES variable rather than a toolchain.
This commit is contained in:
DRC 2024-12-11 12:25:16 -05:00
parent 9758c8a74c
commit be7a0c8bae
3 changed files with 36 additions and 42 deletions

View File

@ -415,17 +415,13 @@ iPhone 5S/iPad Mini 2/iPad Air and newer.
IOS_PLATFORMDIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform IOS_PLATFORMDIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
IOS_SYSROOT=($IOS_PLATFORMDIR/Developer/SDKs/iPhoneOS*.sdk) IOS_SYSROOT=($IOS_PLATFORMDIR/Developer/SDKs/iPhoneOS*.sdk)
export CFLAGS="-Wall -arch arm64 -miphoneos-version-min=8.0 -funwind-tables" export CFLAGS="-Wall -miphoneos-version-min=8.0 -funwind-tables"
cd {build_directory} cd {build_directory}
cat <<EOF >toolchain.cmake cmake -G"Unix Makefiles" \
set(CMAKE_SYSTEM_NAME Darwin) -DCMAKE_C_COMPILER=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang \
set(CMAKE_SYSTEM_PROCESSOR aarch64) -DCMAKE_OSX_ARCHITECTURES=arm64 \
set(CMAKE_C_COMPILER /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang)
EOF
cmake -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake \
-DCMAKE_OSX_SYSROOT=${IOS_SYSROOT[0]} \ -DCMAKE_OSX_SYSROOT=${IOS_SYSROOT[0]} \
[additional CMake flags] {source_directory} [additional CMake flags] {source_directory}
make make
@ -643,18 +639,19 @@ are installed by default on OS X/macOS 10.7 and later.
In order to create a Mac package/disk image that contains universal In order to create a Mac package/disk image that contains universal
x86-64/Arm binaries, set the following CMake variable: x86-64/Arm binaries, set the following CMake variable:
* `ARMV8_BUILD`: Directory containing an Armv8 (64-bit) iOS or macOS build of * `SECONDARY_BUILD`: Directory containing a cross-compiled x86-64 or Armv8
libjpeg-turbo to include in the universal binaries (64-bit) iOS or macOS build of libjpeg-turbo to include in the universal
binaries
You should first use CMake to configure an Armv8 sub-build of libjpeg-turbo You should first use CMake to configure the cross-compiled x86-64 or Armv8
(see "Building libjpeg-turbo for iOS" above, if applicable) in a build secondary build of libjpeg-turbo (see "Building libjpeg-turbo for iOS" above,
directory that matches the one specified in the aforementioned CMake variable. if applicable) in a build directory that matches the one specified in the
Next, configure the primary (x86-64) build of libjpeg-turbo as an out-of-tree aforementioned CMake variable. Next, configure the primary (native) build of
build, specifying the aforementioned CMake variable, and build it. Once the libjpeg-turbo as an out-of-tree build, specifying the aforementioned CMake
primary build has been built, run `make dmg` from the build directory. The variable, and build it. Once the primary build has been built, run `make dmg`
packaging system will build the sub-build, use lipo to combine it with the from the build directory. The packaging system will build the secondary build,
primary build into a single set of universal binaries, then package the use lipo to combine it with the primary build into a single set of universal
universal binaries. binaries, then package the universal binaries.
Windows Windows

View File

@ -127,8 +127,8 @@ endif() # WIN32
if(APPLE) if(APPLE)
set(ARMV8_BUILD "" CACHE PATH set(SECONDARY_BUILD "" CACHE PATH
"Directory containing Armv8 iOS or macOS build to include in universal binaries") "Directory containing cross-compiled x86-64 or Armv8 (64-bit) iOS or macOS build to include in universal binaries")
set(MACOS_APP_CERT_NAME "" CACHE STRING set(MACOS_APP_CERT_NAME "" CACHE STRING
"Name of the Developer ID Application certificate (in the macOS keychain) that should be used to sign the libjpeg-turbo DMG. Leave this blank to generate an unsigned DMG.") "Name of the Developer ID Application certificate (in the macOS keychain) that should be used to sign the libjpeg-turbo DMG. Leave this blank to generate an unsigned DMG.")

View File

@ -51,7 +51,7 @@ PKGNAME=@PKGNAME@
VERSION=@VERSION@ VERSION=@VERSION@
BUILD=@BUILD@ BUILD=@BUILD@
SRCDIR=@CMAKE_CURRENT_SOURCE_DIR@ SRCDIR=@CMAKE_CURRENT_SOURCE_DIR@
BUILDDIRARMV8=@ARMV8_BUILD@ BUILDDIRSECONDARY=@SECONDARY_BUILD@
WITH_JAVA=@WITH_JAVA@ WITH_JAVA=@WITH_JAVA@
MACOS_APP_CERT_NAME="@MACOS_APP_CERT_NAME@" MACOS_APP_CERT_NAME="@MACOS_APP_CERT_NAME@"
MACOS_INST_CERT_NAME="@MACOS_INST_CERT_NAME@" MACOS_INST_CERT_NAME="@MACOS_INST_CERT_NAME@"
@ -98,69 +98,66 @@ if [ "$PREFIX" = "@CMAKE_INSTALL_DEFAULT_PREFIX@" -a "$DOCDIR" = "@CMAKE_INSTALL
ln -fs /Library/Documentation/$PKGNAME $PKGROOT$DOCDIR ln -fs /Library/Documentation/$PKGNAME $PKGROOT$DOCDIR
fi fi
install_subbuild() install_secondarybuild()
{ {
BUILDDIR=$1 BUILDDIR=$1
ARCHNAME=$2
DIRNAME=$3
LIPOARCH=$4
if [ ! -d $BUILDDIR ]; then if [ ! -d $BUILDDIR ]; then
echo ERROR: $ARCHNAME build directory $BUILDDIR does not exist echo ERROR: Secondary build directory $BUILDDIR does not exist
exit 1 exit 1
fi fi
if [ ! -f $BUILDDIR/Makefile -a ! -f $BUILDDIR/build.ninja ]; then if [ ! -f $BUILDDIR/Makefile -a ! -f $BUILDDIR/build.ninja ]; then
echo ERROR: $ARCHNAME build directory $BUILDDIR is not configured echo ERROR: Secondary build directory $BUILDDIR is not configured
exit 1 exit 1
fi fi
mkdir -p $TMPDIR/dist.$DIRNAME mkdir -p $TMPDIR/dist.secondary
pushd $BUILDDIR pushd $BUILDDIR
DESTDIR=$TMPDIR/dist.$DIRNAME @CMAKE_MAKE_PROGRAM@ install DESTDIR=$TMPDIR/dist.secondary @CMAKE_MAKE_PROGRAM@ install
popd popd
$LIPO -create \ $LIPO -create \
$PKGROOT/$LIBDIR/$LIBJPEG_DSO_NAME \ $PKGROOT/$LIBDIR/$LIBJPEG_DSO_NAME \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$LIBDIR/$LIBJPEG_DSO_NAME \ $TMPDIR/dist.secondary/$LIBDIR/$LIBJPEG_DSO_NAME \
-output $PKGROOT/$LIBDIR/$LIBJPEG_DSO_NAME -output $PKGROOT/$LIBDIR/$LIBJPEG_DSO_NAME
$LIPO -create \ $LIPO -create \
$PKGROOT/$LIBDIR/libjpeg.a \ $PKGROOT/$LIBDIR/libjpeg.a \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$LIBDIR/libjpeg.a \ $TMPDIR/dist.secondary/$LIBDIR/libjpeg.a \
-output $PKGROOT/$LIBDIR/libjpeg.a -output $PKGROOT/$LIBDIR/libjpeg.a
$LIPO -create \ $LIPO -create \
$PKGROOT/$LIBDIR/$TURBOJPEG_DSO_NAME \ $PKGROOT/$LIBDIR/$TURBOJPEG_DSO_NAME \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$LIBDIR/$TURBOJPEG_DSO_NAME \ $TMPDIR/dist.secondary/$LIBDIR/$TURBOJPEG_DSO_NAME \
-output $PKGROOT/$LIBDIR/$TURBOJPEG_DSO_NAME -output $PKGROOT/$LIBDIR/$TURBOJPEG_DSO_NAME
$LIPO -create \ $LIPO -create \
$PKGROOT/$LIBDIR/libturbojpeg.a \ $PKGROOT/$LIBDIR/libturbojpeg.a \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$LIBDIR/libturbojpeg.a \ $TMPDIR/dist.secondary/$LIBDIR/libturbojpeg.a \
-output $PKGROOT/$LIBDIR/libturbojpeg.a -output $PKGROOT/$LIBDIR/libturbojpeg.a
$LIPO -create \ $LIPO -create \
$PKGROOT/$BINDIR/cjpeg \ $PKGROOT/$BINDIR/cjpeg \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$BINDIR/cjpeg \ $TMPDIR/dist.secondary/$BINDIR/cjpeg \
-output $PKGROOT/$BINDIR/cjpeg -output $PKGROOT/$BINDIR/cjpeg
$LIPO -create \ $LIPO -create \
$PKGROOT/$BINDIR/djpeg \ $PKGROOT/$BINDIR/djpeg \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$BINDIR/djpeg \ $TMPDIR/dist.secondary/$BINDIR/djpeg \
-output $PKGROOT/$BINDIR/djpeg -output $PKGROOT/$BINDIR/djpeg
$LIPO -create \ $LIPO -create \
$PKGROOT/$BINDIR/jpegtran \ $PKGROOT/$BINDIR/jpegtran \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$BINDIR/jpegtran \ $TMPDIR/dist.secondary/$BINDIR/jpegtran \
-output $PKGROOT/$BINDIR/jpegtran -output $PKGROOT/$BINDIR/jpegtran
$LIPO -create \ $LIPO -create \
$PKGROOT/$BINDIR/tjbench \ $PKGROOT/$BINDIR/tjbench \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$BINDIR/tjbench \ $TMPDIR/dist.secondary/$BINDIR/tjbench \
-output $PKGROOT/$BINDIR/tjbench -output $PKGROOT/$BINDIR/tjbench
$LIPO -create \ $LIPO -create \
$PKGROOT/$BINDIR/rdjpgcom \ $PKGROOT/$BINDIR/rdjpgcom \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$BINDIR/rdjpgcom \ $TMPDIR/dist.secondary/$BINDIR/rdjpgcom \
-output $PKGROOT/$BINDIR/rdjpgcom -output $PKGROOT/$BINDIR/rdjpgcom
$LIPO -create \ $LIPO -create \
$PKGROOT/$BINDIR/wrjpgcom \ $PKGROOT/$BINDIR/wrjpgcom \
-arch $LIPOARCH $TMPDIR/dist.$DIRNAME/$BINDIR/wrjpgcom \ $TMPDIR/dist.secondary/$BINDIR/wrjpgcom \
-output $PKGROOT/$BINDIR/wrjpgcom -output $PKGROOT/$BINDIR/wrjpgcom
} }
if [ "$BUILDDIRARMV8" != "" ]; then if [ "$BUILDDIRSECONDARY" != "" ]; then
install_subbuild $BUILDDIRARMV8 Armv8 armv8 arm64 install_secondarybuild $BUILDDIRSECONDARY
fi fi
install_name_tool -id $LIBDIR/$LIBJPEG_DSO_NAME $PKGROOT/$LIBDIR/$LIBJPEG_DSO_NAME install_name_tool -id $LIBDIR/$LIBJPEG_DSO_NAME $PKGROOT/$LIBDIR/$LIBJPEG_DSO_NAME