diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-05-30 10:20:19 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-10 17:24:17 +0100 |
| commit | f89b331b100ac1dc3fde91bc4634a6c5d74f48a0 (patch) | |
| tree | 59f6fa92d6df6cb68ae52a73ff69ce259f2de409 | |
| parent | b5f7bb10b34446ac6b802a4f73f8f8bf68b6ae41 (diff) | |
| download | poky-f89b331b100ac1dc3fde91bc4634a6c5d74f48a0.tar.gz | |
libgcrypt: workaround ICE failure on mips with '-O -g'
Hit a ICE and could reduce it to the following minimal example:
1. Only the size of array assigned with 2 caused the issue:
$ cat > mipgcc-test.c << END
int main (int argc, char **argv)
{
char *pStrArry[ARRAY_SIZE_MAX] = {"hello"};
int i = 0;
while(pStrArry[i] && i<ARRAY_SIZE_MAX)
{
printf("%s\n", pStrArry[i]);
i++;
}
return 0;
}
END
2. Only -O1 and -g on mips caused the issue:
$ mips-poky-linux-gcc -O1 -g -o mipgcc-test mipgcc-test.c
mipgcc-test.c: In function 'main':
mipgcc-test.c:18:1: internal compiler error: in dwarf2out_var_location, at dwarf2out.c:20810
}
^
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions
[YOCTO #6034]
3. The quick workround is trying to enlarge the size of array with larger
than 2.
4. File a bug to GNU, but it could not be reproduced on there environment.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60643
(From OE-Core rev: 4af0c70c70809c8f03d7ba14745d79e3c6e35b2e)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-support/libgcrypt/files/fix-ICE-failure-on-mips-with-option-O-and-g.patch | 71 | ||||
| -rw-r--r-- | meta/recipes-support/libgcrypt/libgcrypt.inc | 4 |
2 files changed, 74 insertions, 1 deletions
diff --git a/meta/recipes-support/libgcrypt/files/fix-ICE-failure-on-mips-with-option-O-and-g.patch b/meta/recipes-support/libgcrypt/files/fix-ICE-failure-on-mips-with-option-O-and-g.patch new file mode 100644 index 0000000000..56c591f06e --- /dev/null +++ b/meta/recipes-support/libgcrypt/files/fix-ICE-failure-on-mips-with-option-O-and-g.patch | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | tests/bench-slope.c: workaround ICE failure on mips with '-O -g' | ||
| 2 | |||
| 3 | Hit a ICE and could reduce it to the following minimal example: | ||
| 4 | |||
| 5 | 1. Only the size of array assigned with 2 caused the issue: | ||
| 6 | $ cat > mipgcc-test.c << END | ||
| 7 | |||
| 8 | int main (int argc, char **argv) | ||
| 9 | { | ||
| 10 | char *pStrArry[ARRAY_SIZE_MAX] = {"hello"}; | ||
| 11 | int i = 0; | ||
| 12 | |||
| 13 | while(pStrArry[i] && i<ARRAY_SIZE_MAX) | ||
| 14 | { | ||
| 15 | printf("%s\n", pStrArry[i]); | ||
| 16 | i++; | ||
| 17 | } | ||
| 18 | |||
| 19 | return 0; | ||
| 20 | } | ||
| 21 | |||
| 22 | END | ||
| 23 | |||
| 24 | 2. Only -O1 and -g on mips caused the issue: | ||
| 25 | $ mips-poky-linux-gcc -O1 -g -o mipgcc-test mipgcc-test.c | ||
| 26 | mipgcc-test.c: In function 'main': | ||
| 27 | mipgcc-test.c:18:1: internal compiler error: in dwarf2out_var_location, at dwarf2out.c:20810 | ||
| 28 | } | ||
| 29 | ^ | ||
| 30 | Please submit a full bug report, | ||
| 31 | with preprocessed source if appropriate. | ||
| 32 | See <http://gcc.gnu.org/bugs.html> for instructions | ||
| 33 | |||
| 34 | 3. The quick workround is trying to enlarge the size of array with larger | ||
| 35 | than 2. | ||
| 36 | |||
| 37 | 4. File a bug to GNU, but it could not be reproduced on there environment. | ||
| 38 | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60643 | ||
| 39 | |||
| 40 | Upstream-Status: [oe specific] | ||
| 41 | |||
| 42 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 43 | --- | ||
| 44 | tests/bench-slope.c | 4 ++-- | ||
| 45 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 46 | |||
| 47 | diff --git a/tests/bench-slope.c b/tests/bench-slope.c | ||
| 48 | index bd05064..28c2438 100644 | ||
| 49 | --- a/tests/bench-slope.c | ||
| 50 | +++ b/tests/bench-slope.c | ||
| 51 | @@ -1197,7 +1197,7 @@ static struct bench_ops hash_ops = { | ||
| 52 | }; | ||
| 53 | |||
| 54 | |||
| 55 | -static struct bench_hash_mode hash_modes[] = { | ||
| 56 | +static struct bench_hash_mode hash_modes[3] = { | ||
| 57 | {"", &hash_ops}, | ||
| 58 | {0}, | ||
| 59 | }; | ||
| 60 | @@ -1349,7 +1349,7 @@ static struct bench_ops mac_ops = { | ||
| 61 | }; | ||
| 62 | |||
| 63 | |||
| 64 | -static struct bench_mac_mode mac_modes[] = { | ||
| 65 | +static struct bench_mac_mode mac_modes[3] = { | ||
| 66 | {"", &mac_ops}, | ||
| 67 | {0}, | ||
| 68 | }; | ||
| 69 | -- | ||
| 70 | 1.8.1.2 | ||
| 71 | |||
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc index 8afa945648..e3cd4f8a8b 100644 --- a/meta/recipes-support/libgcrypt/libgcrypt.inc +++ b/meta/recipes-support/libgcrypt/libgcrypt.inc | |||
| @@ -12,7 +12,9 @@ DEPENDS = "libgpg-error libcap" | |||
| 12 | 12 | ||
| 13 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \ | 13 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \ |
| 14 | file://add-pkgconfig-support.patch \ | 14 | file://add-pkgconfig-support.patch \ |
| 15 | file://libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch" | 15 | file://libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch \ |
| 16 | file://fix-ICE-failure-on-mips-with-option-O-and-g.patch \ | ||
| 17 | " | ||
| 16 | 18 | ||
| 17 | inherit autotools-brokensep texinfo binconfig pkgconfig | 19 | inherit autotools-brokensep texinfo binconfig pkgconfig |
| 18 | 20 | ||
