diff options
author | Helio Chissini de Castro <helio.castro@bmw-carit.de> | 2016-03-11 15:24:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-12 22:11:48 +0000 |
commit | 681a45200a3d48173918e8dc880ef1be293ac9c7 (patch) | |
tree | b2e53921789c75b8c67ec2a0c92dc303d12e387f /meta/recipes-devtools | |
parent | 15c5b2afcb25d0a92b90fdf403c7361147de8a2c (diff) | |
download | poky-681a45200a3d48173918e8dc880ef1be293ac9c7.tar.gz |
gcc: Fix the license on GNU OpenMP
Poky jethro has libgomp ( GNU OpenMP ) license marked as GPL-3.0,
where's in fact the correct is GPL-3.0 with GCC Library Runtime Exception
As stated on https://github.com/gcc-mirror/gcc/blob/master/libgomp/libgomp.h
header license:
...
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.
...
(From OE-Core rev: 07db569a91e2aa8456624b340830c0e027cc6ead)
Signed-off-by: Helio Chissini de Castro <helio.castro@bmw-carit.de>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-runtime.inc | 36 |
1 files changed, 4 insertions, 32 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index d4cfe08052..572396d693 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc | |||
@@ -109,38 +109,10 @@ PACKAGES = "\ | |||
109 | libitm-staticdev \ | 109 | libitm-staticdev \ |
110 | " | 110 | " |
111 | 111 | ||
112 | # Most libraries are licensed with the exception, but | 112 | LICENSE_${PN}-dbg = "GPL-3.0-with-GCC-exception" |
113 | # one library is really GPLv3. | 113 | LICENSE_${PN} = "GPL-3.0-with-GCC-exception" |
114 | # | 114 | LICENSE_${PN}-dev = "GPL-3.0-with-GCC-exception" |
115 | LICENSE_${PN}-dbg = "GPL-3.0-with-GCC-exception & GPLv3" | 115 | LICENSE_${PN}-staticdev = "GPL-3.0-with-GCC-exception" |
116 | LICENSE_libstdc++ = "GPL-3.0-with-GCC-exception" | ||
117 | LICENSE_libstdc++-precompile-dev = "GPL-3.0-with-GCC-exception" | ||
118 | LICENSE_libstdc++-dev = "GPL-3.0-with-GCC-exception" | ||
119 | LICENSE_libstdc++-staticdev = "GPL-3.0-with-GCC-exception" | ||
120 | LICENSE_libg2c = "GPL-3.0-with-GCC-exception" | ||
121 | LICENSE_libg2c-dev = "GPL-3.0-with-GCC-exception" | ||
122 | LICENSE_libssp = "GPL-3.0-with-GCC-exception" | ||
123 | LICENSE_libssp-dev = "GPL-3.0-with-GCC-exception" | ||
124 | LICENSE_libssp-staticdev = "GPL-3.0-with-GCC-exception" | ||
125 | LICENSE_libgfortran = "GPL-3.0-with-GCC-exception" | ||
126 | LICENSE_libgfortran-dev = "GPL-3.0-with-GCC-exception" | ||
127 | LICENSE_libgfortran-staticdev = "GPL-3.0-with-GCC-exception" | ||
128 | LICENSE_libmudflap = "GPL-3.0-with-GCC-exception" | ||
129 | LICENSE_libmudflap-dev = "GPL-3.0-with-GCC-exception" | ||
130 | LICENSE_libmudflap-staticdev = "GPL-3.0-with-GCC-exception" | ||
131 | LICENSE_libquadmath = "GPL-3.0-with-GCC-exception" | ||
132 | LICENSE_libquadmath-dev = "GPL-3.0-with-GCC-exception" | ||
133 | LICENSE_libquadmath-staticdev = "GPL-3.0-with-GCC-exception" | ||
134 | LICENSE_libatomic = "GPL-3.0-with-GCC-exception" | ||
135 | LICENSE_libatomic-dev = "GPL-3.0-with-GCC-exception" | ||
136 | LICENSE_libatomic-staticdev = "GPL-3.0-with-GCC-exception" | ||
137 | LICENSE_libitm = "GPL-3.0-with-GCC-exception" | ||
138 | LICENSE_libitm-dev = "GPL-3.0-with-GCC-exception" | ||
139 | LICENSE_libitm-staticdev = "GPL-3.0-with-GCC-exception" | ||
140 | |||
141 | LICENSE_libgomp = "GPLv3" | ||
142 | LICENSE_libgomp-dev = "GPLv3" | ||
143 | LICENSE_libgomp-staticdev = "GPLv3" | ||
144 | 116 | ||
145 | # The base package doesn't exist, so we clear the recommends. | 117 | # The base package doesn't exist, so we clear the recommends. |
146 | RRECOMMENDS_${PN}-dbg = "" | 118 | RRECOMMENDS_${PN}-dbg = "" |