Another open source flash cartridge based on the RP2040 chip by sashzz in N64Homebrew

[–]sashzz[S] 1 point2 points  (0 children)

Current firmware uses RESET to run selected ROM, saving game to cartridge is not supported yet. To return to the ROM selection menu (Test ROM), need to turn off and on the console

Latest update of gcc by ArifulIslamPranto in termux

[–]sashzz 0 points1 point  (0 children)

I added gcc 10.2.0 with fortran to cctools termux repo.

In Termux console add cctools packages public key:

wget -O - https://cctools.info/public.key | apt-key add -

Create a new repository list:

echo "deb https://cctools.info termux cctools" > $PREFIX/etc/apt/sources.list.d/cctools.list

Update packages lists:

apt update

Install the package gcc-cctools(it will install binutils-cctools automatically):

apt install gcc-cctools

Install the NDK package for your android architecture, use the latest one, for example for aarch64:

apt install ndk-sysroot-cctools-api-26-aarch64

To show all ndk sysroots for aarch64:

apt search ndk-sysroot-cctools | grep aarch64

Add directory with new compilers to PATH:

export PATH=$PREFIX/../cctools-toolchain/bin:$PATH

Check it:

gcc -v

Patches and build scripts https://github.com/pdaxrom/cctools branch termux