search for: mfloatpr

Displaying 1 result from an estimated 1 matches for "mfloatpr".

Did you mean: mfloatprs
2014 Nov 27
3
[PATCH] configure.ac: don't try to unset -g from CFLAGS
The sed expression is wrong, any flags with '-g' in any position gets zapped, for example: -mfloat-gprs=double (for powerpc e500) -> -mfloatprs=double. Which gives build errors and is perfectly valid in real use scenarios to switch from e500v1 (single precision) code to e500v2 (double precision) code. Signed-off-by: Gustavo Zacarias <gustavo at zacarias.com.ar> --- configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deleti...