You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownew SystemException("GCC compiler was not found.");
process.WaitForExit();
varoutput= process.StandardError.ReadToEnd();
varmatch= Regex.Match(output,"(gcc|clang) version (([0-9]+\\.[0-9]+)\\.[0-9]+)");
if(!match.Success)
thrownew SystemException("GCC compiler was not found.");
compiler= match.Groups[1].ToString();
longVersion= match.Groups[2].ToString();
shortVersion= match.Groups[3].ToString();
}
This function fails to find the GCC compiler on my system with my normal LANG=de_DE.UTF8, but succeeds if I export LANG=C before running the relevant code.
Unfortunately the Code running this is proprietary, so I cannot share more about it, but it is literally:
CppSharp/src/Parser/ParserOptions.cs
Lines 193 to 235 in b658ff3
This function fails to find the GCC compiler on my system with my normal
LANG=de_DE.UTF8
, but succeeds if Iexport LANG=C
before running the relevant code.Unfortunately the Code running this is proprietary, so I cannot share more about it, but it is literally:
The text was updated successfully, but these errors were encountered: