Geonkick is a free software synthesizer capable of generating a wide range of percussive sounds, including kicks, snares, claps, hi-hats, shakers, and also unique effect sounds.
Hello,
When building on the riscv64 platform, I encountered the following error:
/build/geonkick/src/geonkick-v3.0.1/src/Base64EncoderDecoder.cpp:66:33: error: narrowing conversion of ‘-1’ from ‘int’ to ‘char’ [-Wnarrowing]
...
The code works fine on the x86_64 device. To address this error, I made the following modifications to src/Base64EncoderDecoder.cpp based on the information provided in the error message:
Hello, When building on the
riscv64
platform, I encountered the following error:The code works fine on the
x86_64
device. To address this error, I made the following modifications tosrc/Base64EncoderDecoder.cpp
based on the information provided in the error message:After these changes, the code should now work on the
riscv64
device. If these changes are feasible, I am prepare to create a pull request to fix it.