kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

build.conf (317B)



      1 single_binary=yes
      2 kore_source=../../
      3 kore_flavor=NOTLS=1
      4 
      5 cflags=-std=c99 -Werror
      6 cflags=-Wall -Wmissing-declarations -Wshadow
      7 cflags=-Wstrict-prototypes -Wmissing-prototypes
      8 cflags=-Wpointer-arith -Wcast-qual -Wsign-compare
      9 
     10 dev {
     11 }
     12 
     13 darwin {
     14 }
     15 
     16 openbsd {
     17 }
     18 
     19 netbsd {
     20 }
     21 
     22 freebsd {
     23 }
     24 
     25 linux {
     26 	cflags=-D_GNU_SOURCE
     27 }