aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-04-24 21:13:40 +0100
committergingerBill <bill@gingerbill.org>2021-04-24 21:13:40 +0100
commit184c686c7e939fc0e9110f49a75b4b2c9d1249b6 (patch)
tree6eb6f4a16966a4fe8a157388ca30dad92693dd9a /examples
parent240a568eb9bbde870d0640521139cc09bb40ca40 (diff)
Add clang-11 for Linux; blank out threading_example on darwin
Diffstat (limited to 'examples')
-rw-r--r--examples/demo/demo.odin5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index 7119dc432..6817b15a4 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -1109,6 +1109,11 @@ prefix_table := [?]string{
};
threading_example :: proc() {
+ if ODIN_OS == "darwin" {
+ // TODO: Fix threads on darwin/macOS
+ return;
+ }
+
fmt.println("\n# threading_example");
{ // Basic Threads