mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 09:38:01 +02:00
Working on Linux fixes
This commit is contained in:
parent
cce45dbc15
commit
6b46904510
18 changed files with 135 additions and 25 deletions
|
@ -733,7 +733,11 @@ void BootApp::DoLinkMS()
|
|||
|
||||
void BootApp::DoLinkGNU()
|
||||
{
|
||||
String linkerPath = "/usr/bin/c++";
|
||||
String linkerPath;
|
||||
if (FileExists("/usr/bin/clang++"))
|
||||
linkerPath = "/usr/bin/clang++";
|
||||
else
|
||||
linkerPath = "/usr/bin/c++";
|
||||
|
||||
String linkLine;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue