diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2017-03-09 23:59:31 +1000 |
---|---|---|
committer | Juro Bystricky <juro.bystricky@intel.com> | 2017-04-06 13:47:39 -0700 |
commit | 84e3017bf8832a5a85f0646ebcb9488dfb09a6ac (patch) | |
tree | 8bcef6567f6cbb256c7caa26bdb2c45d9d933e38 /recipes-devtools | |
parent | 6bd8366b04811e8bd8ff5a2325a7269d64d46add (diff) | |
download | meta-mingw-84e3017bf8832a5a85f0646ebcb9488dfb09a6ac.tar.gz |
libgcc: Relocate and package dll's in bindir
Relocate and package the dll's provided by libgcc in bindir. It is
convention that on mingw/windows dll files are installed into the
bindir, this is done to avoid issues with search paths and allows for
execution of binaries without the need to point at a libdir.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r-- | recipes-devtools/gcc/libgcc_%.bbappend | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/recipes-devtools/gcc/libgcc_%.bbappend b/recipes-devtools/gcc/libgcc_%.bbappend index dd95317..2a95d02 100644 --- a/recipes-devtools/gcc/libgcc_%.bbappend +++ b/recipes-devtools/gcc/libgcc_%.bbappend | |||
@@ -1,2 +1,8 @@ | |||
1 | FILES_${PN}_append_mingw32 = " ${base_libdir}/libgcc*.dll" | 1 | FILES_${PN}_append_mingw32 = " ${bindir}/libgcc*.dll" |
2 | FILES_${PN}-dev_append_mingw32 = " ${base_libdir}/libgcc*.a" | 2 | FILES_${PN}-dev_append_mingw32 = " ${base_libdir}/libgcc*.a" |
3 | |||
4 | do_install_append_mingw32 () { | ||
5 | # move the .dll files into bindir | ||
6 | install -d ${D}${bindir} | ||
7 | mv ${D}${base_libdir}/libgcc*.dll ${D}${bindir}/ | ||
8 | } | ||