You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So excited to find this library, but I ran into a number of errors trying to build on Apple Silicon. I think I cleared out a few, but I'm still stuck at linking.
I did have to disable SUP and run get-protos.sh and dump-mappings.sh. I guess that means Keynote has changed too much?
Next I got an error about ifstream f(name.c_str()); which seems to have been fixed by the compilers suggestion to change it to std::ifstream.
That still threw an error, but a quick Google suggested #include <fstream> which seems to have fixed it.
Now I'm stuck at the linking with the following:
[ 61%] Linking CXX executable keynote
ld: warning: ignoring file /opt/homebrew/lib/libboost_atomic-mt.dylib, building for macOS-x86_64 but attempting to link with file built for macOS-arm64
ld: warning: ignoring file /opt/homebrew/lib/libprotobuf.dylib, building for macOS-x86_64 but attempting to link with file built for macOS-arm64
ld: warning: ignoring file /opt/homebrew/lib/libboost_filesystem-mt.dylib, building for macOS-x86_64 but attempting to link with file built for macOS-arm64
Undefined symbols for architecture x86_64:
Which is followed by tons of stuff. Any suggestions on how to get it working?
Thank you!
The text was updated successfully, but these errors were encountered:
So excited to find this library, but I ran into a number of errors trying to build on Apple Silicon. I think I cleared out a few, but I'm still stuck at linking.
get-protos.sh
anddump-mappings.sh
. I guess that means Keynote has changed too much?ifstream f(name.c_str());
which seems to have been fixed by the compilers suggestion to change it tostd::ifstream
.#include <fstream>
which seems to have fixed it.Which is followed by tons of stuff. Any suggestions on how to get it working?
Thank you!
The text was updated successfully, but these errors were encountered: