lin-aout.c
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. /* x86 running linux and using nasm as a.out */
  2. #include <string.h>
  3. #ifndef LCCDIR
  4. #define LCCDIR "/usr/local/lib/lcc/"
  5. #endif
  6. #define NASMPATH "/usr/local/bin/nasm"
  7. char *cpp[] = { LCCDIR "cpp", "-D__STDC__=1",
  8. "-Di386", "-D__i386", "-D__i386__",
  9. "-Dlinux", "-D__linux", "-D__linux__",
  10. "-Dunix", "-D__unix", "-D__unix__",
  11. "$1", "$2", "$3", 0 };
  12. char *include[] = { "-I" LCCDIR "include", "-I/usr/local/include",
  13. "-I/usr/include", 0 };
  14. char *com[] = { LCCDIR "rcc", "-target=x86/nasm",
  15. "$1", "$2", "$3", 0 };
  16. char *as[] = { NASMPATH, "-a", "-faout", "-o", "$3", "$1", "$2", 0 };
  17. char *ld[] = { "/usr/bin/ld", "-m", "i386linux",
  18. "-L/usr/i486-linuxaout/lib",
  19. "-o", "$3", "$1",
  20. "/usr/i486-linuxaout/lib/crt0.o",
  21. "$2", "", "-lc", 0 };
  22. static char *bbexit = LCCDIR "bbexit.o";
  23. extern char *concat(char *, char *);
  24. extern int access(const char *, int);
  25. int option(char *arg) {
  26. if (strncmp(arg, "-lccdir=", 8) == 0) {
  27. cpp[0] = concat(&arg[8], "/cpp");
  28. include[0] = concat("-I", concat(&arg[8], "/include"));
  29. com[0] = concat(&arg[8], "/rcc");
  30. bbexit = concat(&arg[8], "/bbexit.o");
  31. } else if (strcmp(arg, "-g") == 0)
  32. ;
  33. else if (strcmp(arg, "-b") == 0 && access(bbexit, 4) == 0)
  34. ld[9] = bbexit;
  35. else
  36. return 0;
  37. return 1;
  38. }