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

commit d5ca2b42c614cda5042a067a63c3a349217b381a
parent 7b20192e02713ccde0aa53fcb3914de6fdd18a8a
Author: Joris Vink <joris@coders.se>
Date:   Tue, 19 Jun 2018 22:46:55 +0200

invoke platform specific compiler for kodev build.

Diffstat:
src/cli.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/cli.c b/src/cli.c @@ -373,9 +373,9 @@ static const char *gitignore = "*.o\n.flavor\n.objs\n%s.so\nassets.h\ncert\n"; static int s_fd = -1; static char *appl = NULL; static int run_after = 0; -static char *compiler_c = "gcc"; -static char *compiler_cpp = "g++"; -static char *compiler_ld = "gcc"; +static char *compiler_c = "cc"; +static char *compiler_cpp = "c++"; +static char *compiler_ld = "cc"; static struct mime_list mime_types; static struct cfile_list source_files; static struct buildopt_list build_options;