diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
commit | 8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch) | |
tree | eb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0010-c99-complex-ugly-hack.patch | |
download | meta-linaro-dizzy-enea.tar.gz |
initial commit for Enea Linux 5.0 armdizzy-enea
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0010-c99-complex-ugly-hack.patch')
-rw-r--r-- | meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0010-c99-complex-ugly-hack.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0010-c99-complex-ugly-hack.patch b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0010-c99-complex-ugly-hack.patch new file mode 100644 index 0000000..b628571 --- /dev/null +++ b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0010-c99-complex-ugly-hack.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From 73f69d806e2c9561a54995223431a1076cfd6164 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 29 Mar 2013 08:49:57 +0400 | ||
4 | Subject: [PATCH 10/35] c99-complex-ugly-hack | ||
5 | |||
6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
7 | |||
8 | Upstream-Status: Inappropriate [embedded specific] | ||
9 | --- | ||
10 | libstdc++-v3/configure | 3 +++ | ||
11 | 1 file changed, 3 insertions(+) | ||
12 | |||
13 | diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure | ||
14 | index c57a751..a1333e2 100755 | ||
15 | --- a/libstdc++-v3/configure | ||
16 | +++ b/libstdc++-v3/configure | ||
17 | @@ -18734,6 +18734,9 @@ $as_echo_n "checking for ISO C99 support to TR1 in <complex.h>... " >&6; } | ||
18 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
19 | /* end confdefs.h. */ | ||
20 | #include <complex.h> | ||
21 | +#ifdef __UCLIBC__ | ||
22 | +#error ugly hack to make sure configure test fails here for cross until uClibc supports the complex funcs | ||
23 | +#endif | ||
24 | int | ||
25 | main () | ||
26 | { | ||
27 | -- | ||
28 | 1.7.10.4 | ||
29 | |||