mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-15 06:44:10 +02:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
58c1feb51f
2 changed files with 9 additions and 1 deletions
|
@ -143,6 +143,14 @@ namespace System
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Result<char8> Read() => In.Read();
|
||||||
|
|
||||||
|
public static Result<void> ReadLine(String strBuffer) => In.ReadLine(strBuffer);
|
||||||
|
|
||||||
|
public static Task<String> ReadLineAsync() => In.ReadLineAsync();
|
||||||
|
|
||||||
|
public static Result<void> ReadToEnd(String outText) => In.ReadToEnd(outText);
|
||||||
|
|
||||||
public static void Write(String line)
|
public static void Write(String line)
|
||||||
{
|
{
|
||||||
Out.Write(line).IgnoreError();
|
Out.Write(line).IgnoreError();
|
||||||
|
|
|
@ -194,7 +194,7 @@ execute_process(
|
||||||
set(TARGET_LIBS_OS "${LLVM_SYSTEM_LIBS}")
|
set(TARGET_LIBS_OS "${LLVM_SYSTEM_LIBS}")
|
||||||
|
|
||||||
if (HAVE_BACKTRACE_HEADERS)
|
if (HAVE_BACKTRACE_HEADERS)
|
||||||
set(TARGET_LIBS_OS " -lbacktrace")
|
string(APPEND TARGET_LIBS_OS " -lbacktrace")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
list(APPEND LLVM_LIBS
|
list(APPEND LLVM_LIBS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue