core: Set compiler for M2-Planet.
This is a follow-up to commit
7a6505be6e
build: Cater for M2-Planet.
* src/mes.c (mes_environment)[__M2__]: Set compiler to "m2c".
This commit is contained in:
parent
ab9946d8ef
commit
5850531ae9
|
@ -47,6 +47,8 @@ mes_environment (int argc, char **argv)
|
||||||
char *compiler = "gnuc";
|
char *compiler = "gnuc";
|
||||||
#if __MESC__
|
#if __MESC__
|
||||||
compiler = "mesc";
|
compiler = "mesc";
|
||||||
|
#elif __M2__
|
||||||
|
compiler = "m2c";
|
||||||
#elif __TINYC__
|
#elif __TINYC__
|
||||||
compiler = "tcc";
|
compiler = "tcc";
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue