klib.json 323 B

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