We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I built the https://github.com/kermitt2/pdfalto/tree/feature/support-mac-arm branch on my MacBook Pro M1. I encountered the usual Mac problems listed in the README, which were fixed by doing:
export C_INCLUDE_PATH=/usr/local/include export CPLUS_INCLUDE_PATH=/usr/local/include
following #135 (comment)
I ran ./install_deps.sh but then I got the following error:
./install_deps.sh
cp: directory libs/image/zlib/mac/arm64 does not exist
I then manually added arm64 to each libs/*/mac directory and then ./install_deps.sh worked and I could finally build the pdfalto binary (yay!).
arm64
libs/*/mac
pdfalto
I suspect there's an easy fix to ensure that the arm64 directories are created before attempting to store the library files in those directories.
The text was updated successfully, but these errors were encountered:
Specifically on my MacBook Pro M2:
brew install cmake brew install automake brew install wget git clone https://github.com/kermitt2/pdfalto.git cd pdfalto git submodule update --init --recursive mkdir libs/freetype/mac/arm64 mkdir libs/icu/mac/arm64 mkdir libs/libxml/mac/arm64 mkdir libs/image/png/mac/arm64 mkdir libs/image/zlib/mac/arm64 ./install_deps.sh export C_INCLUDE_PATH=/opt/homebrew/include export CPLUS_INCLUDE_PATH=/opt/homebrew/include cmake . make
Sorry, something went wrong.
No branches or pull requests
I built the https://github.com/kermitt2/pdfalto/tree/feature/support-mac-arm branch on my MacBook Pro M1. I encountered the usual Mac problems listed in the README, which were fixed by doing:
following #135 (comment)
I ran
./install_deps.sh
but then I got the following error:I then manually added
arm64
to eachlibs/*/mac
directory and then./install_deps.sh
worked and I could finally build thepdfalto
binary (yay!).I suspect there's an easy fix to ensure that the
arm64
directories are created before attempting to store the library files in those directories.The text was updated successfully, but these errors were encountered: