mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 23:36:00 +02:00
Potential -static-libgcc macOS fix
This commit is contained in:
parent
b204dbf8c0
commit
6962343e23
1 changed files with 3 additions and 1 deletions
|
@ -347,7 +347,9 @@ namespace IDE
|
||||||
//TODO: Make an option
|
//TODO: Make an option
|
||||||
if (options.mBuildOptions.mCLibType == Project.CLibType.Static)
|
if (options.mBuildOptions.mCLibType == Project.CLibType.Static)
|
||||||
{
|
{
|
||||||
linkLine.Append("-static-libgcc -static-libstdc++ ");
|
if (mPlatformType != .macOS)
|
||||||
|
linkLine.Append("-static-libgcc ");
|
||||||
|
linkLine.Append("-static-libstdc++ ");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue