littlejohn
06-23-2003, 04:27 PM
hiho,
the decompiler at this stage is really unfriendly, and there are no docs explaining how to use it. Here are the instructions:
- unpack and make it (tar xzvf uncc-RELEASE.tar.gz && cd uncc && make)
- enter the test directory (cd test) and compile one of the test programs included (gcc cfile.c -o cfile)
- strip --strip-all cfile (where cfile is the object code generated by the previous compilation)
- ./dasm.pl cfile cfile.dasm
- ../uncc cfile.dasm
atm uncc only works on linux, and is intended for developers to show how the engine works.
that's all for now,
littlejohn
the decompiler at this stage is really unfriendly, and there are no docs explaining how to use it. Here are the instructions:
- unpack and make it (tar xzvf uncc-RELEASE.tar.gz && cd uncc && make)
- enter the test directory (cd test) and compile one of the test programs included (gcc cfile.c -o cfile)
- strip --strip-all cfile (where cfile is the object code generated by the previous compilation)
- ./dasm.pl cfile cfile.dasm
- ../uncc cfile.dasm
atm uncc only works on linux, and is intended for developers to show how the engine works.
that's all for now,
littlejohn