invoke platform specific compiler for kodev build.

This commit is contained in:
Joris Vink 2018-06-19 22:46:55 +02:00
parent 7b20192e02
commit d5ca2b42c6
1 changed files with 3 additions and 3 deletions

View File

@ -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;