diff options
| author | Mark Hatle <mark.hatle@windriver.com> | 2015-10-20 11:29:37 -0500 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-24 12:17:50 +0100 | 
| commit | 1003e93a1b3359a98fb631eeeda3fda184832288 (patch) | |
| tree | 3005dee28780a25a8bca35b2711666cb85b2fcdf | |
| parent | 18358a04930722ffec856cab359ed32f061ba555 (diff) | |
| download | openembedded-core-1003e93a1b3359a98fb631eeeda3fda184832288.tar.gz openembedded-core-1003e93a1b3359a98fb631eeeda3fda184832288.tar.bz2 openembedded-core-1003e93a1b3359a98fb631eeeda3fda184832288.zip | |
gcc-target.inc: Add support for executable thats may have a suffix
In the past GCC has used a wildcard to permit generating executables
that may have a suffix, such as .exe.  This wild card was lost in one
of the updates.  Adding the wild card back in fixes a number of issues
when generating a mingw gcc.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-target.inc | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index 6e160c0d1c..d62c15afd8 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc @@ -31,7 +31,7 @@ PACKAGES = "\  FILES_${PN} = "\      ${bindir}/${TARGET_PREFIX}gcc* \ -    ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/collect2 \ +    ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/collect2* \      ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc* \      ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/lto* \      ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/lib*${SOLIBS} \ @@ -83,20 +83,20 @@ FILES_gfortran-symlinks = "\      ${bindir}/f95"  FILES_cpp = "\ -    ${bindir}/${TARGET_PREFIX}cpp \ +    ${bindir}/${TARGET_PREFIX}cpp* \      ${base_libdir}/cpp \      ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1"  FILES_cpp-symlinks = "${bindir}/cpp" -FILES_gcov = "${bindir}/${TARGET_PREFIX}gcov \ -    ${bindir}/${TARGET_PREFIX}gcov-tool \ +FILES_gcov = "${bindir}/${TARGET_PREFIX}gcov* \ +    ${bindir}/${TARGET_PREFIX}gcov-tool* \  "  FILES_gcov-symlinks = "${bindir}/gcov \      ${bindir}/gcov-tool \  "  FILES_g++ = "\ -    ${bindir}/${TARGET_PREFIX}g++ \ +    ${bindir}/${TARGET_PREFIX}g++* \      ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1plus \  "  FILES_g++-symlinks = "\ @@ -141,7 +141,7 @@ do_install () {  	cd ${D}${bindir}  	# We care about g++ not c++ -	rm -f *c++ +	rm -f *c++*  	# We don't care about the gcc-<version> ones for this  	rm -f *gcc-?.?* | 
