+2018-11-26 Jozef Lawrynowicz <jozef.l@mittosystems.com>
+
+ * doc/sourcebuild.texi: Document check_effective_target_newlib_nano_io.
+
2018-11-26 Jakub Jelinek <jakub@redhat.com>
PR target/88195
@item newlib
Target supports Newlib.
+@item newlib_nano_io
+GCC was configured with @code{--enable-newlib-nano-formatted-io}, which reduces
+the code size of Newlib formatted I/O functions.
+
@item pow10
Target provides @code{pow10} function.
+2018-11-26 Jozef Lawrynowicz <jozef.l@mittosystems.com>
+
+ * lib/target-supports.exp (check_effective_target_newlib_nano_io): New.
+ * gcc.c-torture/execute/920501-8.c: Register undefined linker symbol
+ _printf_float for newlib_nano_io target.
+ * gcc.c-torture/execute/930513-1.c: Likewise.
+ * gcc.dg/torture/builtin-sprintf.c: Likewise.
+ * gcc.c-torture/execute/ieee/920810-1.x: New.
+
2018-11-26 Jakub Jelinek <jakub@redhat.com>
PR target/88195
+/* { dg-additional-options "-Wl,-u,_printf_float" { target newlib_nano_io } } */
+
#include <stdio.h>
#include <stdarg.h>
+/* { dg-additional-options "-Wl,-u,_printf_float" { target newlib_nano_io } } */
+
#include <stdio.h>
char buf[2];
--- /dev/null
+if { [check_effective_target_newlib_nano_io] } {
+ lappend additional_flags "-Wl,-u,_printf_float"
+}
+return 0
/* PR tree-optimization/86274 - SEGFAULT when logging std::to_string(NAN)
{ dg-do run }
- { dg-options "-O2 -Wall" } */
+ { dg-options "-O2 -Wall" }
+ { dg-additional-options "-Wl,-u,_printf_float" { target newlib_nano_io } } */
#define X "0xdeadbeef"
#define nan(x) __builtin_nan (x)
}]
}
+# Return true if GCC was configured with --enable-newlib-nano-formatted-io
+proc check_effective_target_newlib_nano_io { } {
+ return [check_configured_with "--enable-newlib-nano-formatted-io"]
+}
+
# Some newlib versions don't provide a frexpl and instead depend
# on frexp to implement long double conversions in their printf-like
# functions. This leads to broken results. Detect such versions here.