diff options
author | Dmitry Arkhipenko <36101416+dkgitdev@users.noreply.github.com> | 2023-02-25 13:47:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-25 11:47:19 +0100 |
commit | b2edfe7a02f49f07eb9fcf71cd500215725c217e (patch) | |
tree | f14e5ced9fda9b95499ca33eb42c042da4670b71 /lib/std/sysatomics.nim | |
parent | d4782c9e42ff6cee9f674a376b1595583e08c2a3 (diff) | |
download | Nim-b2edfe7a02f49f07eb9fcf71cd500215725c217e.tar.gz |
Fix: nintendoswitch compilation (#21368)
* Fix: make nintendoswitch someGcc, remove symlink support for nintendoswitch, add getAppFilename for nintendoswitch * Fix: use getApplHeuristic on nintendoswitch
Diffstat (limited to 'lib/std/sysatomics.nim')
-rw-r--r-- | lib/std/sysatomics.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/sysatomics.nim b/lib/std/sysatomics.nim index b7ccb4092..36a4e5537 100644 --- a/lib/std/sysatomics.nim +++ b/lib/std/sysatomics.nim @@ -15,7 +15,7 @@ when defined(nimPreviewSlimSystem): const hasThreadSupport = compileOption("threads") and not defined(nimscript) -const someGcc = defined(gcc) or defined(llvm_gcc) or defined(clang) +const someGcc = defined(gcc) or defined(llvm_gcc) or defined(clang) or defined(nintendoswitch) const someVcc = defined(vcc) or defined(clang_cl) type |