klib.json 384 B

123456789101112131415161718192021222324252627
  1. {
  2. "Cflags": [
  3. "-mcmodel=kernel",
  4. "-O0",
  5. "-fplan9-extensions",
  6. "-mno-red-zone",
  7. "-ffreestanding",
  8. "-fno-builtin",
  9. "-Wall",
  10. "-Wno-missing-braces",
  11. "-Wno-parentheses",
  12. "-Wno-unknown-pragmas",
  13. "-Wuninitialized",
  14. "-Wmaybe-uninitialized",
  15. "-g"
  16. ],
  17. "Name": "KernelLibs",
  18. "Oflags": [
  19. "-static"
  20. ],
  21. "Post": [
  22. "rm *.o"
  23. ],
  24. "Pre": [
  25. "rm -f *.o *.tag.*"
  26. ]
  27. }