![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/boost/predef/architecture/ |
Upload File : |
/* Copyright Rene Rivera 2008-2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_PREDEF_ARCHITECTURE_M68K_H #define BOOST_PREDEF_ARCHITECTURE_M68K_H #include <boost/predef/version_number.h> #include <boost/predef/make.h> /*` [heading `BOOST_ARCH_M68K`] [@http://en.wikipedia.org/wiki/M68k Motorola 68k] architecture. [table [[__predef_symbol__] [__predef_version__]] [[`__m68k__`] [__predef_detection__]] [[`M68000`] [__predef_detection__]] [[`__mc68060__`] [6.0.0]] [[`mc68060`] [6.0.0]] [[`__mc68060`] [6.0.0]] [[`__mc68040__`] [4.0.0]] [[`mc68040`] [4.0.0]] [[`__mc68040`] [4.0.0]] [[`__mc68030__`] [3.0.0]] [[`mc68030`] [3.0.0]] [[`__mc68030`] [3.0.0]] [[`__mc68020__`] [2.0.0]] [[`mc68020`] [2.0.0]] [[`__mc68020`] [2.0.0]] [[`__mc68010__`] [1.0.0]] [[`mc68010`] [1.0.0]] [[`__mc68010`] [1.0.0]] [[`__mc68000__`] [0.0.1]] [[`mc68000`] [0.0.1]] [[`__mc68000`] [0.0.1]] ] */ #define BOOST_ARCH_M68K BOOST_VERSION_NUMBER_NOT_AVAILABLE #if defined(__m68k__) || defined(M68000) # undef BOOST_ARCH_M68K # if !defined(BOOST_ARCH_M68K) && (defined(__mc68060__) || defined(mc68060) || defined(__mc68060)) # define BOOST_ARCH_M68K BOOST_VERSION_NUMBER(6,0,0) # endif # if !defined(BOOST_ARCH_M68K) && (defined(__mc68040__) || defined(mc68040) || defined(__mc68040)) # define BOOST_ARCH_M68K BOOST_VERSION_NUMBER(4,0,0) # endif # if !defined(BOOST_ARCH_M68K) && (defined(__mc68030__) || defined(mc68030) || defined(__mc68030)) # define BOOST_ARCH_M68K BOOST_VERSION_NUMBER(3,0,0) # endif # if !defined(BOOST_ARCH_M68K) && (defined(__mc68020__) || defined(mc68020) || defined(__mc68020)) # define BOOST_ARCH_M68K BOOST_VERSION_NUMBER(2,0,0) # endif # if !defined(BOOST_ARCH_M68K) && (defined(__mc68010__) || defined(mc68010) || defined(__mc68010)) # define BOOST_ARCH_M68K BOOST_VERSION_NUMBER(1,0,0) # endif # if !defined(BOOST_ARCH_M68K) && (defined(__mc68000__) || defined(mc68000) || defined(__mc68000)) # define BOOST_ARCH_M68K BOOST_VERSION_NUMBER_AVAILABLE # endif # if !defined(BOOST_ARCH_M68K) # define BOOST_ARCH_M68K BOOST_VERSION_NUMBER_AVAILABLE # endif #endif #if BOOST_ARCH_M68K # define BOOST_ARCH_M68K_AVAILABLE #endif #define BOOST_ARCH_M68K_NAME "Motorola 68k" #endif #include <boost/predef/detail/test.h> BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_M68K,BOOST_ARCH_M68K_NAME)