From 47968df15b83de27ff3db06a4e92122e1ff5f881 Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Thu, 2 Jun 2005 10:42:53 +0000 Subject: [PATCH] Added some build instructions. --- zsnes/src/tools/compile.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 zsnes/src/tools/compile.txt diff --git a/zsnes/src/tools/compile.txt b/zsnes/src/tools/compile.txt new file mode 100644 index 00000000..b03b652b --- /dev/null +++ b/zsnes/src/tools/compile.txt @@ -0,0 +1,26 @@ +How to compile the tools. + +First build the utility files used by the tools. + +g++ -Wall -O3 -o fileutil.o -c fileutil.cpp +g++ -Wall -O3 -o strutil.o -c strutil.cpp + + +Minimize Whitespace: +g++ -Wall -O3 -o minwhite.exe minwhite.cpp fileutil.o + +Extra EXTSYMs: +g++ -Wall -O3 -o extraext.exe extraext.cpp fileutil.o strutil.o + +Section Tester: +g++ -Wall -O3 -o sec-test.exe sec-test.cpp fileutil.o + +Source Counter: +g++ -Wall -O3 -o srccount.exe srccount.cpp fileutil.o + + +All the tools scan every compatible file they find from the directory +they are in. It also scans all sub directories recursively. + +Extra EXTSYMs accepts command line arguments. You can specify filenames +to put on the can't be opened ignore list. \ No newline at end of file