GNU Binutils 2.9.1 with patches for building Paper Mario - Mirror of https://github.com/pmret/binutils-papermario
Go to file
Ethan Roseman d5e06ff2a7
Merge pull request #10 from pmret/pm-hack
New option to fix delay slot crap
2022-12-08 02:45:21 -05:00
.github/workflows warnings 2021-08-23 05:36:58 +09:00
bfd Alter generation of object files to be compatible with latest gdb 2022-10-28 22:41:45 -07:00
binutils Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
config Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
etc Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
gas New option to fix delay slot crap 2022-12-08 16:43:35 +09:00
gprof Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
include Alter generation of object files to be compatible with latest gdb 2022-10-28 22:41:45 -07:00
ld PM changes 2020-09-28 16:10:24 -04:00
libiberty added macOS compile support 2020-12-03 01:20:32 -08:00
opcodes Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
texinfo Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
config-ml.in Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
config.guess Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
config.sub restored old config.sub with darwin compatibility patch 2020-12-04 13:50:40 -08:00
config.sub.alt restored old config.sub with darwin compatibility patch 2020-12-04 13:50:40 -08:00
configure Update configure +x 2020-10-01 01:13:20 -04:00
configure.bat Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
configure.in Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
COPYING Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
COPYING.LIB Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
install-sh Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
ltconfig Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
ltmain.sh Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
makeall.bat Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
Makefile.in Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
makefile.vms Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
missing Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
mkinstalldirs Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
move-if-change Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
mpw-build.in Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
mpw-config.in Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
mpw-configure Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
mpw-install Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
mpw-README Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
PAPERMARIO.md Adding static to configure flags 2020-10-20 16:15:27 -04:00
README Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
setup.com Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
symlink-tree Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00
ylwrap Initial commit of GNU Binutils 2.9.1 2020-09-20 20:52:02 -04:00

		   README for GNU development tools

This directory contains various GNU compilers, assemblers, linkers, 
debuggers, etc., plus their support routines, definitions, and documentation.

If you are receiving this as part of a GDB release, see the file gdb/README.
If with a binutils release, see binutils/README;  if with a libg++ release,
see libg++/README, etc.  That'll give you info about this
package -- supported targets, how to use it, how to report bugs, etc.

It is now possible to automatically configure and build a variety of
tools with one command.  To build all of the tools contained herein,
run the ``configure'' script here, e.g.:

	./configure 
	make

To install them (by default in /usr/local/bin, /usr/local/lib, etc),
then do:
	make install

(If the configure script can't determine your type of computer, give it
the name as an argument, for instance ``./configure sun4''.  You can
use the script ``config.sub'' to test whether a name is recognized; if
it is, config.sub translates it to a triplet specifying CPU, vendor,
and OS.)

If you have more than one compiler on your system, it is often best to
explicitly set CC in the environment before running configure, and to
also set CC when running make.  For example (assuming sh/bash/ksh):

	CC=gcc ./configure
	make

A similar example using csh:

	setenv CC gcc
	./configure
	make

Much of the code and documentation enclosed is copyright by
the Free Software Foundation, Inc.  See the file COPYING or
COPYING.LIB in the various directories, for a description of the
GNU General Public License terms under which you can copy the files.

REPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info
on where and how to report problems.