PassC pragma

The passc pragma can be used to pass additional parameters to the C compiler like one would using the commandline switch --passc:

  1. {.passc: "-Wall -Werror".}

Note that one can use gorge from the system module to embed parameters from an external command that will be executed during semantic analysis:

  1. {.passc: gorge("pkg-config --cflags sdl").}