inith.json 496 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "inith": {
  3. "Cflags": [
  4. "-g",
  5. "-Wall",
  6. "-Wno-missing-braces",
  7. "-Wno-parentheses",
  8. "-Wno-unknown-pragmas",
  9. "-O0",
  10. "-static",
  11. "-fplan9-extensions",
  12. "-mno-red-zone",
  13. "-ffreestanding",
  14. "-fno-builtin",
  15. "-mcmodel=small"
  16. ],
  17. "Libs": [
  18. "/amd64/lib/libc.a"
  19. ],
  20. "Oflags": [
  21. "-e_main",
  22. "-static",
  23. "-Ttext=0x200020"
  24. ],
  25. "Post": [
  26. "elf2c init > init.h"
  27. ],
  28. "Program": "init",
  29. "SourceFiles": [
  30. "init9.c",
  31. "../port/initcode.c"
  32. ]
  33. }
  34. }