Page 1 of 1
sm64ex
Posted: Thu Mar 25, 2021 11:42 am
by xeno74
Hi All,
I was able to compile sm64ex with MintPPC on my X5000 today. It also works on Fienix.
Links:
Cheers,
Christian
Re: sm64ex
Posted: Sun Mar 28, 2021 4:31 pm
by xeno74
Big Endian patch for sm64-port:
504b225b62ac9072945586fbc1b62571f0da631b.patch (Allow tools to work properly on big endian systems)
Re: sm64ex
Posted: Sun Mar 28, 2021 4:42 pm
by xeno74
Makefile: replace CFLAGS += -march=native with CFLAGS += -mcpu=native
Re: sm64ex
Posted: Sun Dec 29, 2024 1:00 pm
by xeno74
Installation instructions:
-
Code: Select all
sudo xbps-install -S base-devel python3 SDL2-devel glew-devel
-
Code: Select all
git clone https://github.com/sm64pc/sm64ex.git
or download: nightly.zip
- The selected ROM has to be in the repo folder with the name
baserom.$VERSION.z64. For example: baserom.eu.z64.
- or
- vim Makefile
Replace march with mcpu in the Linux section:
Code: Select all
else
LDFLAGS := $(BITS) -march=$(TARGET_ARCH) -lm $(BACKEND_LDFLAGS) -lpthread -ldl
ifeq ($(NO_PIE), 1)
LDFLAGS += -no-pie
endif
Code: Select all
else
LDFLAGS := $(BITS) -mcpu=$(TARGET_ARCH) -lm $(BACKEND_LDFLAGS) -lpthread -ldl
ifeq ($(NO_PIE), 1)
LDFLAGS += -no-pie
endif
- (For the E.U. version on X5000/20 and X1000) or
(For the U.S. version on X5000/40 with 4 cores)
You can start the U.S. version with the following commands:
Code: Select all
cd /home/amigaone/Downloads/sm64ex/build/us_pc
