Home | History | Annotate | Download | only in debase

Lines Matching refs:compiler

27 #define DE_COMPILER_VANILLA	0		/*!< Vanilla compiler. Used for disabling all platform-specific optimizations.	*/
29 #define DE_COMPILER_GCC 2 /*!< Gnu C Compiler. */
30 #define DE_COMPILER_CLANG 3 /*!< LLVM Clang Compiler. */
32 /* Compiler detection. */
43 /* Compiler setting. */
51 # error Detected compiler is Clang, but got DE_COMPILER == DE_COMPILER_GCC
53 # error Detected compiler is GCC, but got DE_COMPILER == DE_COMPILER_CLANG
55 # error Detected compiler does not match the supplied compiler.
65 # define DE_COMPILER DE_DETAIL_DETECTED_COMPILER /*!< Compiler identification (set to one of DE_COMPILER_*). */
67 # error Unknown compiler.