inith.json 376 B

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