alien.inline.compile: compiler: use eg++ on openbsd
parent
f93e7dd859
commit
5b46a22297
|
@ -27,12 +27,20 @@ SYMBOL: C++
|
|||
{ C++ [ ".cpp" ] }
|
||||
} case ;
|
||||
|
||||
: compiler ( lang -- str )
|
||||
HOOK: compiler os ( lang -- str )
|
||||
|
||||
M: word compiler ( lang -- str )
|
||||
{
|
||||
{ C [ "gcc" ] }
|
||||
{ C++ [ "g++" ] }
|
||||
} case ;
|
||||
|
||||
M: openbsd compiler ( lang -- str )
|
||||
{
|
||||
{ C [ "gcc" ] }
|
||||
{ C++ [ "eg++" ] }
|
||||
} case ;
|
||||
|
||||
HOOK: compiler-descr os ( lang -- descr )
|
||||
|
||||
M: word compiler-descr compiler 1array ;
|
||||
|
|
Loading…
Reference in New Issue