klib.json 310 B

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