-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
Can't Build AOM - i386 #21
Comments
I've just ran a build and it worked fine here, 8Gb M1 mac mini - Are you trying to build for an Intel or Apple Silicon Mac. The script is designed to build on Apple Silicon, and some of the flags force that. You mentioned it not building for x86_64, maybe a typo for arm64 ? |
Its Silicon. Mac Book Pro, M1 Max. 32 GB of memory. It has
|
cmake aom shouldn't ask for i386 if should detect the arm64 CPU. Since I can't duplicate the freeze its a bit hard to help. You say you are building AOM, is that as part of my ffmpeg script or are you trying to build AOM separately using my make configuration ? If the former I'd try stripping my command down to cmake -DCMAKE_INSTALL_PREFIX:PATH=/Users/xxxxxxxx/Development/ffmpeg-apple-arm64-build/tool -DENABLE_NEON=ON -DHAVE_NEON=1 -DENABLE_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=Release ../aom/ The NEON commands are probably not needed anymore, I've not tried that. If you want aomenc (is that what the command is called ?) to encode stuff, you'll need to get rid off |
Here is a workaround for that very specific issue: locate the |
I am trying to build AOM and the logs give me this:
And it just hangs. When I try to compile it on my own with
cmake aom
, there error message its more in-depth with:So apparently its trying to compile with i386 and not x86_64. I've tried the suggested
cmake aom -DCMAKE_TOOLCHAIN_FILE=aom/build/cmake/toolchains/x86-macos.cmake
and the same result.Any suggestions?
The text was updated successfully, but these errors were encountered: