Loading [MathJax]/extensions/tex2jax.js
VCV Rack API v2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
arch.hpp
Go to the documentation of this file.
1#pragma once
2
3// Check CPU
4#if defined __x86_64__
5 #define ARCH_X64 1
6#endif
7#if defined __aarch64__
8 #define ARCH_ARM64 1
9#endif
10
11// Check OS
12#if defined _WIN32
13 #define ARCH_WIN 1
14#endif
15#if defined __APPLE__
16 #define ARCH_MAC 1
17#endif
18#if defined __linux__
19 #define ARCH_LIN 1
20#endif