summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-06-09 16:14:23 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-06-09 16:14:23 (GMT)
commit929c368541c44dddd5f51d889635077a3cf55dab (patch)
treef1239f0f20ff656aa09fe71b7129db2cf6d045f4 /config
parent9d8b0a6829a654a414244ca77923faf40cf1e74f (diff)
Add support for the up-coming gcc-4.3.
Two new config options: pkgversion and bugurl. /trunk/scripts/build/cc_gcc.sh | 4 3 1 0 +++- /trunk/tools/addToolVersion.sh | 20 16 4 0 ++++++++++++++++---- /trunk/config/cc/gcc.in | 24 24 0 0 ++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 5 deletions(-)
Diffstat (limited to 'config')
-rw-r--r--config/cc/gcc.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in
index 84d0abf..9d60d18 100644
--- a/config/cc/gcc.in
+++ b/config/cc/gcc.in
@@ -104,6 +104,10 @@ config CC_VERSION
# CT_INSERT_VERSION_STRING_ABOVE
# Don't remove above line!
+config CC_GCC_4_3_or_later
+ bool
+ default n
+
config CC_CXA_ATEXIT
bool
prompt "__cxa_atexit"
@@ -129,6 +133,26 @@ config CC_EXTRA_CONFIG
help
Extra flags to pass onto ./configure when configuring gcc.
+config CC_PKGVERSION
+ string
+ prompt "gcc ID string"
+ depends on CC_GCC_4_3_or_later
+ default "crosstool-NG-${CT_VERSION}"
+ help
+ Specify a string that identifies your package. You may wish to include
+ a build number or build date. This version string will be included in
+ the output of gcc --version.
+
+ This is passed to the configure flag --with-pkgversion.
+
+config CC_BUGURL
+ string
+ prompt "gcc bug URL"
+ depends on CC_GCC_4_3_or_later
+ default ""
+ help
+ Specify the URL that users should visit if they wish to report a bug.
+
menuconfig CC_GCC_GMP_MPFR
bool
prompt "GMP and MPFR"