klib.json 365 B

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