4 Commits

Author SHA1 Message Date
CrashOveride95
cf4a527c48 Revert "statically link included ld" 2021-08-17 22:11:38 -04:00
Randy Palamar
d0c2573b9b re-add now statically linked ld
the binary was compiled with -Os, linked against musl, and stripped to
keep size down

compiled with the following script (assuming you are on a musl based host):

VERSION=2.30

curl -LOC - http://ftp.gnu.org/gnu/binutils/binutils-$VERSION.tar.gz
bsdtar xf binutils-$VERSION.tar.gz
cd binutils-$VERSION
./configure --target=mips-linux-musl \
	--with-gnu-ld \
	--enable-64-bit-bfd \
	--enable-multilib \
	--enable-plugins \
	--disable-gold \
	--disable-shared \
	--disable-werror \
	--disable-nls \
	--prefix=$(pwd)/out || exit 1
make configure-host
make CFLAGS=-Os LDFLAGS="-s -all-static" || exit 1
make install
2021-07-31 12:49:01 -06:00
Randy Palamar
d8ef396b86 remove dynamically linked ld
separate commit to try and keep the git history bloat down
2021-07-31 12:34:24 -06:00
CrashOveride95
15c0bfedbb Port libultra and yay0 (shindou is broken currently) 2020-12-03 20:19:03 -05:00