ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

.clangd (348B)


      1 CompileFlags:
      2   Add: [
      3     -Wall,
      4     -Wextra,
      5     -Wpedantic,
      6     -Wshadow,
      7     -Wpointer-arith,
      8     -Wcast-qual,
      9     -Wcast-align,
     10     -Wstrict-prototypes,
     11     -Wmissing-prototypes,
     12     # -Wconversion,
     13     -xc,
     14     -std=c17,
     15     -g,
     16     -I/opt/homebrew/opt/libgccjit/include,
     17     -L/opt/homebrew/opt/libgccjit/lib/gcc/current,
     18     -lgccjit
     19     ]