mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
config.h.cmake: Reorder along config.h.in.
llvm-svn: 135831
This commit is contained in:
parent
53ed0491c0
commit
e8c8f7fe0e
@ -196,9 +196,6 @@
|
|||||||
/* Define to 1 if you have the `udis86' library (-ludis86). */
|
/* Define to 1 if you have the `udis86' library (-ludis86). */
|
||||||
#undef HAVE_LIBUDIS86
|
#undef HAVE_LIBUDIS86
|
||||||
|
|
||||||
/* Type of 1st arg on ELM Callback */
|
|
||||||
#cmakedefine WIN32_ELMCB_PCSTR ${WIN32_ELMCB_PCSTR}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <limits.h> header file. */
|
/* Define to 1 if you have the <limits.h> header file. */
|
||||||
#cmakedefine HAVE_LIMITS_H ${HAVE_LIMITS_H}
|
#cmakedefine HAVE_LIMITS_H ${HAVE_LIMITS_H}
|
||||||
|
|
||||||
@ -437,6 +434,12 @@
|
|||||||
/* Define to 1 if you have the <termios.h> header file. */
|
/* Define to 1 if you have the <termios.h> header file. */
|
||||||
#cmakedefine HAVE_TERMIOS_H ${HAVE_TERMIOS_H}
|
#cmakedefine HAVE_TERMIOS_H ${HAVE_TERMIOS_H}
|
||||||
|
|
||||||
|
/* Define if the neat program is available */
|
||||||
|
#cmakedefine HAVE_TWOPI ${HAVE_TWOPI}
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `uint64_t'. */
|
||||||
|
#cmakedefine HAVE_UINT64_T ${HAVE_UINT64_T}
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#cmakedefine HAVE_UNISTD_H ${HAVE_UNISTD_H}
|
#cmakedefine HAVE_UNISTD_H ${HAVE_UNISTD_H}
|
||||||
|
|
||||||
@ -551,15 +554,15 @@
|
|||||||
/* LLVM name for the native AsmPrinter init function, if available */
|
/* LLVM name for the native AsmPrinter init function, if available */
|
||||||
#cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter
|
#cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter
|
||||||
|
|
||||||
|
/* LLVM name for the native TargetMC init function, if available */
|
||||||
|
#cmakedefine LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo
|
||||||
|
|
||||||
/* LLVM name for the native Target init function, if available */
|
/* LLVM name for the native Target init function, if available */
|
||||||
#cmakedefine LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target
|
#cmakedefine LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target
|
||||||
|
|
||||||
/* LLVM name for the native TargetInfo init function, if available */
|
/* LLVM name for the native TargetInfo init function, if available */
|
||||||
#cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo
|
#cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo
|
||||||
|
|
||||||
/* LLVM name for the native TargetMC init function, if available */
|
|
||||||
#cmakedefine LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo
|
|
||||||
|
|
||||||
/* Define if this is Unixish platform */
|
/* Define if this is Unixish platform */
|
||||||
#cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX}
|
#cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX}
|
||||||
|
|
||||||
@ -641,17 +644,6 @@
|
|||||||
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
|
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
|
||||||
#undef STAT_MACROS_BROKEN
|
#undef STAT_MACROS_BROKEN
|
||||||
|
|
||||||
/* If using the C implementation of alloca, define if you know the
|
|
||||||
direction of stack growth for your system; otherwise it will be
|
|
||||||
automatically deduced at runtime.
|
|
||||||
STACK_DIRECTION > 0 => grows toward higher addresses
|
|
||||||
STACK_DIRECTION < 0 => grows toward lower addresses
|
|
||||||
STACK_DIRECTION = 0 => direction of growth unknown */
|
|
||||||
#undef STACK_DIRECTION
|
|
||||||
|
|
||||||
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
|
|
||||||
#undef STAT_MACROS_BROKEN
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
#undef STDC_HEADERS
|
#undef STDC_HEADERS
|
||||||
|
|
||||||
@ -667,6 +659,9 @@
|
|||||||
/* Define if use udis86 library */
|
/* Define if use udis86 library */
|
||||||
#undef USE_UDIS86
|
#undef USE_UDIS86
|
||||||
|
|
||||||
|
/* Type of 1st arg on ELM Callback */
|
||||||
|
#cmakedefine WIN32_ELMCB_PCSTR ${WIN32_ELMCB_PCSTR}
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
/* Define to empty if `const' does not conform to ANSI C. */
|
||||||
#undef const
|
#undef const
|
||||||
|
|
||||||
@ -679,11 +674,16 @@
|
|||||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||||
#undef size_t
|
#undef size_t
|
||||||
|
|
||||||
/* Define if the neat program is available */
|
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
|
||||||
#cmakedefine HAVE_TWOPI ${HAVE_TWOPI}
|
#undef STAT_MACROS_BROKEN
|
||||||
|
|
||||||
/* Define to 1 if the system has the type `uint64_t'. */
|
/* If using the C implementation of alloca, define if you know the
|
||||||
#cmakedefine HAVE_UINT64_T ${HAVE_UINT64_T}
|
direction of stack growth for your system; otherwise it will be
|
||||||
|
automatically deduced at runtime.
|
||||||
|
STACK_DIRECTION > 0 => grows toward higher addresses
|
||||||
|
STACK_DIRECTION < 0 => grows toward lower addresses
|
||||||
|
STACK_DIRECTION = 0 => direction of growth unknown */
|
||||||
|
#undef STACK_DIRECTION
|
||||||
|
|
||||||
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
|
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
|
||||||
`char[]'. */
|
`char[]'. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user