Changes between Version 1 and Version 2 of Ticket #7231, comment 3
- Timestamp:
- Feb 17, 2011, 7:12:25 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7231, comment 3
v1 v2 1 The culprid is gcc, which optimize d printf("%s\n", arg) call into puts(arg)1 The culprid is gcc, which optimize '''printf("%s\n", arg)''' into '''puts(arg)'''. 2 2 3 3 See here: 4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=156855 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=256094 * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15685 5 * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25609 6 6 7 Can't be fixed by Haiku in libroot. 7 This can't be fixed in libroot. Sorry. 8 One workaround: use gcc's '''-fno-builtin-printf''' option. 8 9 9 One workaround: use gcc's -fno-builtin-printf option.10