klib.json 395 B

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