aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/freescale/elftosb
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmx.de>2011-05-03 22:40:48 +0000
committerEric Bénard <eric@eukrea.com>2011-05-14 15:33:00 +0200
commita324fe7b35deac983015ad0a2ca63a5dcbdb4681 (patch)
treec7da8e4b144e61bf628015cf25a5ec0bc17bd182 /recipes/freescale/elftosb
parenteb286fe259ae63507e25502d4e387ce2d03cd687 (diff)
downloadopenembedded-a324fe7b35deac983015ad0a2ca63a5dcbdb4681.tar.gz
elftosb: Add native helper to create boot stream files used by freescale iMX SoCs
Signed-off-by: Andreas Mueller <schnitzeltony@gmx.de> Signed-off-by: Eric Bénard <eric@eukrea.com>
Diffstat (limited to 'recipes/freescale/elftosb')
-rw-r--r--recipes/freescale/elftosb/uclibc_and_eglibc_have_no_powf.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes/freescale/elftosb/uclibc_and_eglibc_have_no_powf.patch b/recipes/freescale/elftosb/uclibc_and_eglibc_have_no_powf.patch
new file mode 100644
index 0000000000..78740230bf
--- /dev/null
+++ b/recipes/freescale/elftosb/uclibc_and_eglibc_have_no_powf.patch
@@ -0,0 +1,12 @@
+--- a/elftosb2/ElftosbAST.cpp.old 2010-09-20 15:28:03.000000000 +0200
++++ b/elftosb2/ElftosbAST.cpp 2011-04-18 22:25:54.000000000 +0200
+@@ -755,7 +755,8 @@
+ #ifdef WIN32
+ result = 0;
+ #else
+- result = lroundf(powf(float(leftValue), float(rightValue)));
++ //result = lroundf(powf(float(leftValue), float(rightValue)));
++ result = 0;
+ #endif
+ break;
+ case kBitwiseAnd: