Lothar Serra Mari

Results 38 comments of Lothar Serra Mari

@endrift indeed, the default keyboard layout is not optimized for German keyboards with a standard QWERTZ keyboard. As an example, take the default mapping for the A and B button....

For the MINGW64 shell: `MINGW64_NT-10.0 ` For the MINGW32 shell: `MINGW32_NT-10.0 `

The initial error is gone, but now… ``` clang -Werror -Wall -std=gnu11 -D_GNU_SOURCE -DVERSION="0.10.1" -I. -D_USE_MATH_DEFINES -IWindows -Wno-deprecated-declarations -Wno-deprecated-declarations -g -DGB_INTERNAL -c Core/apu.c -o build/obj/Core/apu.c.o clang -Werror -Wall -std=gnu11 -D_GNU_SOURCE...

Not entirely fixed yet, but looks like a missing dependency for me? ``` clang -Werror -Wall -std=gnu11 -D_GNU_SOURCE -DVERSION="0.10.1" -I. -D_USE_MATH_DEFINES -IWindows -Wno-deprecated-declarations -Wno-deprecated-declarations -g -c SDL/utils.c -o build/obj/SDL/utils.c.o rc...

Yep, the rc functionality is provided by the windres package in MinGW. Since I'm not familiar with the rc syntax, I have no idea on how to rewrite the command...

``` windres -DVERSION=\"0.10.1\" Windows/resources.rc build/obj/Windows/resources.o C:\msys64\mingw64\bin\windres.exe: Windows/resources.rc:11: syntax error make: *** [Makefile:242: build/obj/Windows/resources.o] Fehler 1 ```

nope nope nope nope…. :P ``` clang -Werror -Wall -std=gnu11 -D_GNU_SOURCE -DVERSION="0.10.1" -I. -D_USE_MATH_DEFINES -IWindows -Wno-deprecated-declarations -Wno-deprecated-declarations -g -c SDL/utils.c -o build/obj/SDL/utils.c.o INFORMATION: Es konnten keine Dateien mit dem angegebenen...

Additional Information: SDL2.dll resides in /mingw64/bin/SDL2.dll or /mingw32/bin/SDL2.dll (properly found by `where`) I commented out various lines in resources.rc. Lines 11, 14 and 20 produce errors.

I tried to find the invocation of cpp with Process Explorer, but without success...

While further investigating this issue, I noticed that quite some changes are necessary to the Makefile and resources.rc. The Makefile has to be altered because of modified flags and also...