* [Buildroot] [Bug 13011] New: Incorrect selection of gcc version
@ 2020-06-17 22:05 bugzilla at busybox.net
2020-06-18 7:23 ` [Buildroot] [Bug 13011] " bugzilla at busybox.net
0 siblings, 1 reply; 2+ messages in thread
From: bugzilla at busybox.net @ 2020-06-17 22:05 UTC (permalink / raw)
To: buildroot
https://bugs.busybox.net/show_bug.cgi?id=13011
Bug ID: 13011
Summary: Incorrect selection of gcc version
Product: buildroot
Version: unspecified
Hardware: PC
OS: Linux
Status: NEW
Severity: blocker
Priority: P5
Component: Other
Assignee: unassigned at buildroot.uclibc.org
Reporter: vernon2gm at gmail.com
CC: buildroot at uclibc.org
Target Milestone: ---
Hi:
I use buildroot External toolchain
$ make menuconfig
Toolchain --->
External toolchain gcc version (9.x) --->
gcc is ubuntu20.04 by `sudo apt install gcc` install, it's version is 9.3.0, so
gcc -dumpversion is 9
but toolchain/helpers.mk check_gcc_version function to display error
I fixed this bug, as follows:
diff --git a/toolchain/helpers.mk b/toolchain/helpers.mk
index 44d0c83d1e..7c7819f9a6 100644
--- a/toolchain/helpers.mk
+++ b/toolchain/helpers.mk
@@ -184,7 +184,7 @@ check_gcc_version = \
exit 0 ; \
fi; \
real_version=`$(1) -dumpversion` ; \
- if [[ ! "$${real_version}" =~ ^$${expected_version}\. ]] ; then \
+ if [[ ! "$${real_version}" =~ ^$${expected_version} ]] ; then \
printf "Incorrect selection of gcc version: expected %s.x, got
%s\n" \
"$${expected_version}" "$${real_version}" ; \
exit 1 ; \
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-06-18 7:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-17 22:05 [Buildroot] [Bug 13011] New: Incorrect selection of gcc version bugzilla at busybox.net
2020-06-18 7:23 ` [Buildroot] [Bug 13011] " bugzilla at busybox.net
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.