123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /***************************************************************************
- * *
- * _____ ____ *
- * | __ \ / __ \ _ _ _____ *
- * | | \ \ / / \_\ | | | | _ \ *
- * | | \ \| | | | | | |_| | *
- * | | | || | | | | | ___/ *
- * | | / /| | __ | | | | _ \ *
- * | |__/ / \ \__/ / | |___| | |_| | *
- * |_____/ \____/ |_____|_|_____/ *
- * *
- * Wiimms source code library *
- * *
- ***************************************************************************
- * *
- * Copyright (c) 2012-2022 by Dirk Clemens <wiimm@wiimm.de> *
- * *
- ***************************************************************************
- * *
- * This library is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This library is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * See file gpl-2.0.txt or http://www.gnu.org/licenses/gpl-2.0.txt *
- * *
- ***************************************************************************/
- #ifndef DCLIB_SYSTEM_H
- #define DCLIB_SYSTEM_H 1
- #ifndef PRINT_SYSTEM_SETTINGS
- #include <stdio.h>
- #endif
- ///////////////////////////////////////////////////////////////////////////////
- #ifndef PRINT_SYSTEM_SETTINGS
- typedef enum enumSystemID
- {
- SYSID_UNKNOWN = 0x00000000,
- SYSID_I386 = 0x01000000,
- SYSID_X86_64 = 0x02000000,
- SYSID_CYGWIN32 = 0x03000000,
- SYSID_CYGWIN64 = 0x04000000,
- SYSID_MAC_I386 = 0x05000000,
- SYSID_MAC_X64 = 0x06000000,
- SYSID_MAC_ARM = 0x07000000,
- SYSID_LINUX = 0x08000000,
- SYSID_UNIX = 0x09000000,
- } enumSystemID;
- #endif
- ///////////////////////////////////////////////////////////////////////////////
- #undef SYSTEM_LINUX
- #ifdef __CYGWIN__
- #define SYSTEM_LINUX 0
- #define SYSTEM "cygwin"
- #ifdef __x86_64
- #define SYSTEM2 "cygwin64"
- #define SYSTEMID SYSID_CYGWIN64
- #else
- #define SYSTEM2 "cygwin32"
- #define SYSTEMID SYSID_CYGWIN32
- #endif
- #elif __APPLE__
- #define SYSTEM_LINUX 0
- #define SYSTEM "mac"
- #ifdef __aarch64__
- #define SYSTEM2 "mac/arm"
- #define SYSTEMID SYSID_MAC_ARM
- #elif __x86_64__
- #define SYSTEM2 "mac/x64"
- #define SYSTEMID SYSID_MAC_X64
- #else
- #define SYSTEM2 "mac/i386"
- #define SYSTEMID SYSID_MAC_I386
- #endif
- #elif __linux__
- #define SYSTEM_LINUX 1
- #ifdef __i386__
- #define SYSTEM "i386"
- #define SYSTEMID SYSID_I386
- #elif __x86_64__
- #define SYSTEM "x86_64"
- #define SYSTEMID SYSID_X86_64
- #else
- #define SYSTEM "linux"
- #define SYSTEMID SYSID_LINUX
- #endif
- #elif __unix__
- #define SYSTEM_LINUX 0
- #define SYSTEM "unix"
- #define SYSTEMID SYSID_UNIX
- #else
- #define SYSTEM "unknown"
- #define SYSTEMID SYSID_UNKNOWN
- #endif
- #ifndef SYSTEM2
- #define SYSTEM2 SYSTEM
- #endif
- ///////////////////////////////////////////////////////////////////////////////
- #ifndef PRINT_SYSTEM_SETTINGS
- static inline void dclibPrintSystem ( FILE * f )
- {
- fprintf(f,
- "SYSTEM\t\t:= %s\n"
- "SYSTEM2\t\t:= %s\n"
- "SYSTEMID\t:= 0x%x\n"
- #ifdef SYSTEM_LINUX
- "SYSTEM_LINUX\t:= 1\n"
- #endif
- ,SYSTEM
- ,SYSTEM2
- ,SYSTEMID
- );
- }
- #endif
- ///////////////////////////////////////////////////////////////////////////////
- #ifdef PRINT_SYSTEM_SETTINGS
- result_SYSTEM=SYSTEM
- result_SYSTEM2=SYSTEM2
- result_SYSTEM_LINUX=SYSTEM_LINUX
- #endif
- #endif // DCLIB_SYSTEM_H 1
|