klib.json 259 B

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