Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
OsDetection.h
Go to the documentation of this file.
1#pragma once
2
3#if defined __linux__ || defined __linux
4#define LINUX
5#elif defined TARGET_OS_MAC || defined __apple__ || defined __APPLE__
6#define MACOS
7#define _DARWIN_USE_64_BIT_INODE #This relates to stat / stat64.Unsure if still needed.
8#elif defined _WIN32 || defined _WIN64
9#error Windows detected, but not supported.
10#else
11#error Could not detect Operating System
12#endif
13
14#ifdef __aarch64__
15#define ARM
16#endif