Readme
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:2k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. This directory contains the necessary files to port the C compiler
  2. ``LCC'' (available by FTP from sunsite.doc.ic.ac.uk in the directory
  3. /computing/programming/languages/c/lcc) to compile for Linux (a.out
  4. or ELF) by using NASM as a back-end code generator.
  5. This patch has been tested on lcc version 3.6.
  6. To install:
  7. - Copy `x86nasm.md' into the `src' directory of the lcc tree.
  8. - Copy either `lin-elf.c' or `lin-aout.c' into the `etc' directory.
  9. - If you're installing for a.out, edit `x86nasm.md' and change the
  10.   conditional after the comment reading "CHANGE THIS FOR a.out" in
  11.   the `defsymbol' function from `#if 0' to `#if 1'.
  12. - Make the following changes to `bind.c' in the `src' directory:
  13.   - Near the top of the file, add a line that reads
  14. extern Interface x86nasmIR;
  15.   - In the `bindings' array, add the lines
  16.         "x86-nasm",      &x86nasmIR,
  17.         "x86/nasm",      &x86nasmIR,
  18.     (in sensible looking places...)
  19.   A sample `bind.c' has been provided to show what the result of
  20.   this might look like. You might be able to get away with using it
  21.   directly...
  22. - Modify the lcc makefile to include rules for x86nasm.o: this will
  23.   have to be done in about three places. Just copy any line with
  24.   `x86' on it and modify it to read `x86nasm' everywhere. (Except
  25.   that in the list of object files that rcc is made up from, do
  26.   remember to ensure that every line but the last has a trailing
  27.   backslash...)
  28. - You may have to modify the contents of `lin-elf.c' or `lin-aout.c'
  29.   to reflect the true locations of files such as crt0.o, crt1.o,
  30.   ld-linux.so and so forth. If you don't know where to find these,
  31.   compile a short C program with `gcc -v' and see what command line
  32.   gcc feeds to `ld'.
  33. - You should now be able to build lcc, using `lin-elf.c' or
  34.   `lin-aout.c' as the system-dependent part of the `lcc' wrapper
  35.   program.
  36. - Symlink x86nasm.c into the `src' directory before attempting the
  37.   triple test, or the compile will fail.
  38. - Now it should pass the triple test, on either ELF or a.out. Voila!