12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "KernelLibs": {
- "ToolOpts": {
- "/usr/bin/clang": [
- "-mno-implicit-float"
- ],
- "/usr/bin/gcc": [
- "-Wno-frame-address"
- ],
- "/usr/bin/gcc-6": [
- "-Wno-frame-address"
- ]
- },
- "Cflags": [
- "-mcmodel=kernel",
- "-O0",
- "-mno-red-zone",
- "-ffreestanding",
- "-fno-builtin",
- "-Wall",
- "-Wno-missing-braces",
- "-Wno-parentheses",
- "-Wno-unknown-pragmas",
- "-Wuninitialized",
- "-g"
- ],
- "Oflags": [
- "-static"
- ],
- "Post": [
- "rm *.o"
- ],
- "Pre": [
- "rm -f *.o *.tag.*"
- ]
- }
- }
|