Error: PageSize configuation is wrong (Apple M1/Asahi)
Hello. The app I am trying to run is the Reaper DAW. I installed according to the M1 instructions, and attempted to launch after rebooting my system, and I'm getting a PageSize error. (yes I know Reaper offers ARM builds for linux)
Thanks for any help.
$ ./reaper
Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS PageSize:16384
Box64 with Dynarec v0.1.7 5538ffd built on Apr 12 2022 22:33:33
Error: PageSize configuation is wrong: configured with 4096, but got 16384
There was a bug in the CMakeList and the Pagesize if not selected automaticaly. Use ccmake to enable "PAGE16K" option. Or update box64 and build it from scratch again for M1 and it will be selected this time.
I'm seeing this error two when trying to start a ark server using box64.
ubuntu@Foundry:~/Steam/steamapps/common/ark_server/ShooterGame/Binaries/Linux$ ./server_start.sh Box64 v0.1.9 098317e built on May 2 2022 01:18:32 Error: PageSize configuation is wrong: configured with 16384, but got 4096
but I'm on ubunto 20.04 on oracle arm vm.
I'm pretty new to this and followed
https://github.com/Nyrren/Free-Valheim-Server-Oracle-Cloud-ARM-Edition/blob/main/README.md
for getting box installed.
If some more clear steps could be stated to remedy that would be helpful. No idea how to properly use Use ccmake to enable "PAGE16K" for exmaple.
@bushibot you have disable PAGE16K because you are not running on a M1 on Asahi.. Install ccmake with sudo apt install cmake-curses-gui and use ccmake . in the build folder folder. Set "PAGE16K" to OFF, than use c and g to re-configure and generate the project. I'll create an alternate M1 profile for those using VM.
Alternatively, you can use the "Phytium" profile for now.
So I compiled with cmake .. -DRPI4ARM64=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo, what would the new line look like?
@bushibot with this configuration, it should work, you shouldn't have the PageSize configuration error.
(If you still have it, remove the build folder and start over, as sometimes cmake keep some configuration on)
Thanks, I removed build folder and I recompiled/make and that error did in fact go away :). Weird since I didn't do anything different. Course now the app crashes with a different error (new issue opened).
@bushibot you have disable PAGE16K because you are not running on a M1 on Asahi.. Install ccmake with
sudo apt install cmake-curses-guiand useccmake .in the build folder folder. Set "PAGE16K" to OFF, than usecandgto re-configure and generate the project. I'll create an alternate M1 profile for those using VM.Alternatively, you can use the "Phytium" profile for now.
This works for me. Thanks