mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 07:44:09 +02:00
Working on Linux fixes
This commit is contained in:
parent
cce45dbc15
commit
6b46904510
18 changed files with 135 additions and 25 deletions
|
@ -399,6 +399,17 @@ namespace IDE
|
|||
#else
|
||||
String gccExePath = "/usr/bin/c++";
|
||||
String clangExePath = scope String("/usr/bin/c++");
|
||||
|
||||
if (File.Exists("/usr/bin/clang++"))
|
||||
{
|
||||
gccExePath = "/usr/bin/clang++";
|
||||
clangExePath = scope String("/usr/bin/clang++");
|
||||
}
|
||||
else
|
||||
{
|
||||
gccExePath = "/usr/bin/c++";
|
||||
clangExePath = scope String("/usr/bin/c++");
|
||||
}
|
||||
#endif
|
||||
|
||||
if (project.mNeedsTargetRebuild)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue