aboutsummaryrefslogtreecommitdiff
path: root/src/target.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/target.zig')
-rw-r--r--src/target.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/target.zig b/src/target.zig
index 28833428a7..f07dcc43d2 100644
--- a/src/target.zig
+++ b/src/target.zig
@@ -207,6 +207,11 @@ pub fn supports_fpic(target: std.Target) bool {
return target.os.tag != .windows and target.os.tag != .uefi;
}
+pub fn isSingleThreaded(target: std.Target) bool {
+ _ = target;
+ return false;
+}
+
/// Valgrind supports more, but Zig does not support them yet.
pub fn hasValgrindSupport(target: std.Target) bool {
switch (target.cpu.arch) {