[llvm] r195235 - Update to reflect the next release.

NAKAMURA Takumi geek4civic at gmail.com
Wed Jan 1 00:40:13 PST 2014


2013/11/20 Bill Wendling <isanbard at gmail.com>:
> Author: void
> Date: Wed Nov 20 04:10:50 2013
> New Revision: 195235
>
> URL: http://llvm.org/viewvc/llvm-project?rev=195235&view=rev
> Log:
> Update to reflect the next release.
>
> Modified:
>     llvm/trunk/autoconf/configure.ac
>     llvm/trunk/configure
>     llvm/trunk/docs/ReleaseNotes.rst
>     llvm/trunk/include/llvm/Config/config.h.in

> Modified: llvm/trunk/include/llvm/Config/config.h.in
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Config/config.h.in?rev=195235&r1=195234&r2=195235&view=diff
> ==============================================================================
> --- llvm/trunk/include/llvm/Config/config.h.in (original)
> +++ llvm/trunk/include/llvm/Config/config.h.in Wed Nov 20 04:10:50 2013
> @@ -3,6 +3,9 @@
>  #ifndef CONFIG_H
>  #define CONFIG_H
>
> +/* Define if building universal (internal helper macro) */
> +#undef AC_APPLE_UNIVERSAL_BUILD
> +
>  /* Bug report URL. */
>  #undef BUG_REPORT_URL
>
> @@ -670,6 +673,9 @@
>  /* Define to the one symbol short name of this package. */
>  #undef PACKAGE_TARNAME
>
> +/* Define to the home page for this package. */
> +#undef PACKAGE_URL
> +
>  /* Define to the version of this package. */
>  #undef PACKAGE_VERSION
>
> @@ -694,6 +700,18 @@
>  /* Type of 1st arg on ELM Callback */
>  #undef WIN32_ELMCB_PCSTR
>
> +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
> +   significant byte first (like Motorola and SPARC, unlike Intel). */
> +#if defined AC_APPLE_UNIVERSAL_BUILD
> +# if defined __BIG_ENDIAN__
> +#  define WORDS_BIGENDIAN 1
> +# endif
> +#else
> +# ifndef WORDS_BIGENDIAN
> +#  undef WORDS_BIGENDIAN
> +# endif
> +#endif
> +
>  /* Define to empty if `const' does not conform to ANSI C. */
>  #undef const

I won't locally reproduce the change in config.h.in. Any idea?



More information about the llvm-commits mailing list