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 6faed21a2450a647e591df7d0a2443a1a60b5522
parent 857a3cfb79a6d79b24e100a9fcf22f1b3b25b78e
Author: Joris Vink <joris@coders.se>
Date:   Thu, 29 Dec 2016 20:12:46 +0100

Revert "Invoke platform alternatives #158 (#160)"

This reverts commit 857a3cfb79a6d79b24e100a9fcf22f1b3b25b78e.

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

diff --git a/src/cli.c b/src/cli.c @@ -290,9 +290,9 @@ static int s_fd = -1; static char *appl = NULL; static int run_after = 0; static char *rootdir = NULL; -static char *compiler_c = "cc"; -static char *compiler_cpp = "c++"; -static char *compiler_ld = "ld"; +static char *compiler_c = "gcc"; +static char *compiler_cpp = "g++"; +static char *compiler_ld = "gcc"; static struct mime_list mime_types; static struct cfile_list source_files; static struct buildopt_list build_options;