Get the project compiling on Apple Silicon macOS natively (arm64) (#2827)

I havn't tested it yet, but I can almost guarantee that atleast `goalc`
will not work in the slightest!

But the project is atleast fully compiling. My hope is to start
translating some AVX to NEON next / get `goalc` working...eventually.
This commit is contained in:
Tyler Wilding
2023-07-16 09:13:48 -06:00
committed by GitHub
parent 54b2c5dcbd
commit e0bc7ce732
30 changed files with 9860 additions and 60 deletions
+4
View File
@@ -1,4 +1,7 @@
#pragma once
// clang-format off
// TODO - clang formatting is off in this file due to
// differences in newer versions of clang-format which we have not updates to yet
#if defined(__GNUC__)
#pragma GCC diagnostic push
@@ -168,3 +171,4 @@ class LinkedWord {
#elif defined(__clang__)
#pragma clang diagnostic pop
#endif
// clang-format on