inith.json 407 B

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