We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a9602fc + 810426d commit e99c273Copy full SHA for e99c273
scriptmodules/emulators/mame.sh
@@ -44,8 +44,9 @@ function build_mame() {
44
rpSwap on 4096
45
fi
46
47
- # Compile MAME
48
local params=(NOWERROR=1 ARCHOPTS=-U_FORTIFY_SOURCE PYTHON_EXECUTABLE=python3)
+ # when building on ARM enable 'fsigned-char' for compiled code, fixes crashes in a few drivers
49
+ isPlatform "arm" || isPlatform "aarch64" && params+=(ARCHOPTS_CXX=-fsigned-char)
50
QT_SELECT=5 make "${params[@]}"
51
strip mame
52
0 commit comments