entewurzelauskuh
entewurzelauskuh
I tried suppressing the test program with `cmake -D CMAKE_C_COMPILER_WORKS=1 .. -DRPI4ARM64=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo` but then I ran into `make -j$(nproc)`: ``` Scanning dependencies of target dynarec_native [ 0%] Built target...
Done both, `sudo apt install --reinstall gcc build-essential gcc-arm-linux-gnueabihf libc6:armhf libncurses5:armhf libstdc++6:armhf` and deleted build folder, ran `cmake .. -DRPI4ARM64=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo`, same issue. I'm sorry if I'm too novice in...
Tried deleting and recloned, unfortunately same issue still **uname -a** `Linux instance1 5.15.0-1013-oracle #17-Ubuntu SMP Fri Jun 24 10:14:16 UTC 2022 aarch64 aarch64 aarch64 GNU/Linux` **cat /etc/lsb_release** `cat: /etc/lsb_release: No...
Yea, it's a free VPS from Oracle: https://www.oracle.com/cloud/free/, Arm-based Ampere A1 cores I was wondering why it seemed to work for everyone else from the reddit thread with Oracle's Ampere...
**ls -l /usr/bin/cc** `lrwxrwxrwx 1 root root 20 Jul 22 21:26 /usr/bin/cc -> /etc/alternatives/cc`
**update-alternatives --query cc** ``` Name: cc Link: /usr/bin/cc Slaves: cc.1.gz /usr/share/man/man1/cc.1.gz Status: auto Best: /usr/bin/gcc Value: /usr/bin/gcc Alternative: /usr/bin/gcc Priority: 20 Slaves: cc.1.gz /usr/share/man/man1/gcc.1.gz ```
**ls -l /usr/bin/gcc** `lrwxrwxrwx 1 root root 6 Aug 5 2021 /usr/bin/gcc -> gcc-11` **update-alternatives --query gcc** `update-alternatives: error: no alternatives for gcc`
**ls -l /usr/bin/gcc-11** `lrwxrwxrwx 1 root root 24 Mar 24 14:22 /usr/bin/gcc-11 -> aarch64-linux-gnu-gcc-11`
No problem, thanks for your time mate! Maybe somebody else has another idea
I executed `sudo apt install make cmake build-essential git`, all of that was already present but to be sure I added `--reinstall`. I then tried `cmake .. -DARM_DYNAREC=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo` but...