Tweak macOS build command.

This commit is contained in:
Michael R Sweet 2021-09-27 10:23:32 -04:00
parent 76b2faee0e
commit bb91fb4b13
No known key found for this signature in database
GPG Key ID: 999559A027815955
2 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ generates a static library that will be installed under "/usr/local" with:
You can reproduce this with the makefile using:
sudo make 'COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64"' install
sudo make COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64" install
Legal Stuff

View File

@ -103,7 +103,7 @@ generates a static library that will be installed under "/usr/local" with:
You can reproduce this with the makefile using:
sudo make 'COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64"' install
sudo make COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64" install
Detecting PDFio
@ -112,7 +112,7 @@ Detecting PDFio
PDFio can be detected using the `pkg-config` command, for example:
if pkg-config --exists pdfio; then
...
...
fi
In a makefile you can add the necessary compiler and linker options with: