diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-12-19 10:25:01 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-20 14:53:55 +0000 |
commit | 34d023f6d3c33c45b283b264c56992c941e1e1d5 (patch) | |
tree | 8db483a219ebd6d23ffd452918032152e8f1131c /meta/recipes-devtools/gcc | |
parent | fef47bd915f6a3960e512b5aba8b461b77a9ea78 (diff) | |
download | poky-34d023f6d3c33c45b283b264c56992c941e1e1d5.tar.gz |
gcc-runtime: Drop building libmpx
libmpx is not supported any longer and infact has been removed
completely from gcc-9, see
https://github.com/gcc-mirror/gcc/commit/1e42d5c637e1b1f65dfddd0923dfb25676bb56e5
(From OE-Core rev: 547174fc834273af67a2f7e50a3cf6c8e3b900f4)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-runtime.inc | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index 95153da20c..50ecc815a5 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc | |||
@@ -29,9 +29,6 @@ RUNTIMELIBSSP_mingw32 ?= "libssp" | |||
29 | RUNTIMETARGET = "${RUNTIMELIBSSP} libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \ | 29 | RUNTIMETARGET = "${RUNTIMELIBSSP} libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \ |
30 | ${@bb.utils.contains_any('FORTRAN', [',fortran',',f77'], 'libquadmath', '', d)} \ | 30 | ${@bb.utils.contains_any('FORTRAN', [',fortran',',f77'], 'libquadmath', '', d)} \ |
31 | " | 31 | " |
32 | RUNTIMETARGET_append_x86 = " libmpx" | ||
33 | RUNTIMETARGET_append_x86-64 = " libmpx" | ||
34 | RUNTIMETARGET_remove_libc-musl = "libmpx" | ||
35 | 32 | ||
36 | # libiberty | 33 | # libiberty |
37 | # libmudflap | 34 | # libmudflap |
@@ -160,18 +157,6 @@ PACKAGES = "\ | |||
160 | libitm-dev \ | 157 | libitm-dev \ |
161 | libitm-staticdev \ | 158 | libitm-staticdev \ |
162 | " | 159 | " |
163 | PACKAGES_append_x86 = "\ | ||
164 | libmpx \ | ||
165 | libmpx-dev \ | ||
166 | libmpx-staticdev \ | ||
167 | " | ||
168 | |||
169 | PACKAGES_append_x86-64 = "\ | ||
170 | libmpx \ | ||
171 | libmpx-dev \ | ||
172 | libmpx-staticdev \ | ||
173 | " | ||
174 | |||
175 | # The base package doesn't exist, so we clear the recommends. | 160 | # The base package doesn't exist, so we clear the recommends. |
176 | RRECOMMENDS_${PN}-dbg = "" | 161 | RRECOMMENDS_${PN}-dbg = "" |
177 | 162 | ||
@@ -274,17 +259,3 @@ FILES_libitm-dev = "\ | |||
274 | SUMMARY_libitm-dev = "GNU transactional memory support library - development files" | 259 | SUMMARY_libitm-dev = "GNU transactional memory support library - development files" |
275 | FILES_libitm-staticdev = "${libdir}/libitm.a" | 260 | FILES_libitm-staticdev = "${libdir}/libitm.a" |
276 | SUMMARY_libitm-staticdev = "GNU transactional memory support library - static development files" | 261 | SUMMARY_libitm-staticdev = "GNU transactional memory support library - static development files" |
277 | |||
278 | |||
279 | FILES_libmpx = "${libdir}/libmpx.so.* ${libdir}/libmpxwrappers.so.*" | ||
280 | SUMMARY_libmpx = "Intel Memory Protection Extension library" | ||
281 | FILES_libmpx-dev = "\ | ||
282 | ${libdir}/libmpxwrappers.so \ | ||
283 | ${libdir}/libmpxwrappers.la \ | ||
284 | ${libdir}/libmpx.so \ | ||
285 | ${libdir}/libmpx.la \ | ||
286 | ${libdir}/libmpx.spec \ | ||
287 | " | ||
288 | SUMMARY_libmpx-dev = "Intel Memory Protection Extension library - development files" | ||
289 | FILES_libmpx-staticdev = "${libdir}/libmpx.a ${libdir}/libmpxwrappers.a" | ||
290 | SUMMARY_libmpx-staticdev = "Intel Memory Protection Extension library - static development files" | ||