Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,16 @@ pipeline {
sh build.sh clean
sh build.sh -gtk4 checklibs install-pi-only
elif [[ ${PLATFORM} == cocoa.macosx.* ]]; then
xcode-select --print-path
xcode-select --version
softwareupdate --list
softwareupdate --history
xcodebuild -version
xcodebuild -showsdks
sh build.sh install
for f in libs/*; do
vtool -show ${f}
done
else
echo "Unexpected build platform ${PLATFORM}"
exit 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ elif [ "x${MODEL}" = "xarm64" ] || [ "x${MODEL}" = "xaarch64" ]; then
fi
fi

export MACOSX_DEPLOYMENT_TARGET=10.10
#TODO: increment this?
export MACOSX_DEPLOYMENT_TARGET=10.15
export CLANG_ENABLE_OBJC_WEAK = YES
export CLANG_WARN_UNGUARDED_AVAILABILITY = YES
export GCC_TREAT_WARNINGS_AS_ERRORS = YES


make -f make_macosx.mak $1 $2 $3 $4 $5 $6 $7 $8 $9
Loading