klib.json 323 B

1234567891011121314151617181920212223242526
  1. {
  2. "KernelLibs": {
  3. "Cflags": [
  4. "-mcmodel=kernel",
  5. "-O0",
  6. "-mno-red-zone",
  7. "-ffreestanding",
  8. "-fno-builtin",
  9. "-Wall",
  10. "-Werror",
  11. "-g"
  12. ],
  13. "Include": [
  14. "/$ARCH/include/$CC.json"
  15. ],
  16. "Oflags": [
  17. "-static"
  18. ],
  19. "Post": [
  20. "rm -f *.o"
  21. ],
  22. "Pre": [
  23. "rm -f -f *.o *.tag.*"
  24. ]
  25. }
  26. }