Message ID | 5bac788539bb272893ed.1399801933@gun |
---|---|
State | Accepted |
Commit | 283cebef7061 |
Headers | show |
Cody, All, Your patch: cc/gcc: add 4.9.0 has been applied as: #283cebef7061 http://crosstool-ng.org/hg/crosstool-ng/rev/283cebef7061 Thank you! Regards, Yann E. MORIN. -- For unsubscribe information see http://sourceware.org/lists.html#faq
Copy, All, On 2014-05-11 02:52 -0700, Cody P Schafer spake thusly: > # HG changeset patch > # User Cody P Schafer <dev@codyps.com> > # Date 1399801832 25200 > # Sun May 11 02:50:32 2014 -0700 > # Node ID 5bac788539bb272893ed58dbbc70b26f6775bb0a > # Parent 64bfbbced9dd8f62e0d64936c54b46653a87dd12 > gcc: add 4.9.0 > > Signed-off-by: Cody P Schafer <dev@codyps.com> > > diff --git a/config/cc/gcc.in b/config/cc/gcc.in > --- a/config/cc/gcc.in > +++ b/config/cc/gcc.in > @@ -36,6 +36,11 @@ > # Don't remove next line > # CT_INSERT_VERSION_BELOW > > +config CC_V_4_9_0 > + bool > + prompt "4.9.0" > + select CC_GCC_4_9 > + > config CC_V_linaro_4_8 > bool > prompt "linaro-4.8-2014.01" > @@ -354,6 +359,23 @@ > bool > select CC_GCC_4_7_or_later > > +config CC_GCC_4_9 > + bool > + select CC_GCC_4_9_or_later > + select CC_GCC_USE_GMP_MPFR > + select CC_GCC_USE_MPC > + select CC_GCC_HAS_GRAPHITE > + select CC_GCC_HAS_LTO > + select CC_GCC_HAS_PKGVERSION_BUGURL > + select CC_GCC_HAS_BUILD_ID > + select CC_GCC_HAS_LNK_HASH_STYLE > + select CC_GCC_HAS_LIBQUADMATH > + select CC_SUPPORT_GOLANG > + > +config CC_GCC_4_9_or_later > + bool > + select CC_GCC_4_8_or_later > + > config CC_GCC_latest > bool > select CC_GCC_4_8_or_later You forgot to make that a 4.9-or-later, too. Pushed with that fixed. Thank you! Regards, Yann E. MORIN. > @@ -449,6 +471,7 @@ > string > # Don't remove next line > # CT_INSERT_VERSION_STRING_BELOW > + default "4.9.0" if CC_V_4_9_0 > default "linaro-4.8-2014.01" if CC_V_linaro_4_8 > default "4.8.2" if CC_V_4_8_2 > default "4.8.1" if CC_V_4_8_1 > > -- > For unsubscribe information see http://sourceware.org/lists.html#faq >
diff --git a/config/cc/gcc.in b/config/cc/gcc.in --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -36,6 +36,11 @@ # Don't remove next line # CT_INSERT_VERSION_BELOW +config CC_V_4_9_0 + bool + prompt "4.9.0" + select CC_GCC_4_9 + config CC_V_linaro_4_8 bool prompt "linaro-4.8-2014.01" @@ -354,6 +359,23 @@ bool select CC_GCC_4_7_or_later +config CC_GCC_4_9 + bool + select CC_GCC_4_9_or_later + select CC_GCC_USE_GMP_MPFR + select CC_GCC_USE_MPC + select CC_GCC_HAS_GRAPHITE + select CC_GCC_HAS_LTO + select CC_GCC_HAS_PKGVERSION_BUGURL + select CC_GCC_HAS_BUILD_ID + select CC_GCC_HAS_LNK_HASH_STYLE + select CC_GCC_HAS_LIBQUADMATH + select CC_SUPPORT_GOLANG + +config CC_GCC_4_9_or_later + bool + select CC_GCC_4_8_or_later + config CC_GCC_latest bool select CC_GCC_4_8_or_later @@ -449,6 +471,7 @@ string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "4.9.0" if CC_V_4_9_0 default "linaro-4.8-2014.01" if CC_V_linaro_4_8 default "4.8.2" if CC_V_4_8_2 default "4.8.1" if CC_V_4_8_1
# HG changeset patch # User Cody P Schafer <dev@codyps.com> # Date 1399801832 25200 # Sun May 11 02:50:32 2014 -0700 # Node ID 5bac788539bb272893ed58dbbc70b26f6775bb0a # Parent 64bfbbced9dd8f62e0d64936c54b46653a87dd12 gcc: add 4.9.0 Signed-off-by: Cody P Schafer <dev@codyps.com> -- For unsubscribe information see http://sourceware.org/lists.html#faq