-
Follow this guide to install the necessary tools: http://prizm.cemetech.net/index.php/PrizmSDK_Setup_Guide#Setting_Up_the_SDK_on_Linux
-
Download SDK from here: http://jonimoose.net/2011/casio-prizm-gcc-sdk-v0-3/
-
Download and compile libfxcg https://github.com/gbl08ma/libfxcg
-
Copy libfxcg headers and binaries under the sdk folder.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# See: https://alexdelorenzo.dev/notes/cflags | |
# License: AGPLv3 | |
export detectedArch="$(gcc -march=native -Q --help=target | grep march | awk 'NR==1{print $2}')" | |
export arch="${1:-$detectedArch}" | |
get-diff() { | |
diff \ | |
<(gcc -march=native -mtune=native -Q --help=target) \ |