klib.json 249 B

12345678910111213141516171819202122
  1. {
  2. "KernelLibs": {
  3. "Cflags": [
  4. "-O0",
  5. "-ffreestanding",
  6. "-fno-builtin",
  7. "-Wall",
  8. "-Werror",
  9. "-g"
  10. ],
  11. "Oflags": [
  12. "-static",
  13. "--no-relax"
  14. ],
  15. "Post": [
  16. "rm -f *.o"
  17. ],
  18. "Pre": [
  19. "rm -f -f *.o *.tag.*"
  20. ]
  21. }
  22. }