psst
This commit is contained in:
@@ -4,9 +4,16 @@ using System.Linq;
|
||||
using System.IO;
|
||||
using System;
|
||||
|
||||
/// <summary>
|
||||
/// Utility that detects whether required build tools (MIPS cross-compiler,
|
||||
/// GNU Make, GDB, etc.) are available on the host system by probing the
|
||||
/// PATH via <c>where</c> (Windows) or <c>which</c> (Unix).
|
||||
/// </summary>
|
||||
namespace SplashEdit.EditorCode
|
||||
{
|
||||
public static class ToolchainChecker
|
||||
{
|
||||
public static readonly string[] mipsToolSuffixes = new[]
|
||||
private static readonly string[] mipsToolSuffixes = new[]
|
||||
{
|
||||
"addr2line", "ar", "as", "cpp", "elfedit", "g++", "gcc", "gcc-ar", "gcc-nm",
|
||||
"gcc-ranlib", "gcov", "ld", "nm", "objcopy", "objdump", "ranlib", "readelf",
|
||||
@@ -74,3 +81,4 @@ public static class ToolchainChecker
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user