Derrick Edwards wrote: > I have CFLAGS= -O2 -pipe -funroll-loops in /etc/make.conf > Would this do any damage? Yes. You should either remove that line completely, or reduce -O2 to -O, or add -fno-strict-aliasing to it. Note that the default is: -O2 -fno-strict-aliasing -pipe If you use -O2 without -fno-strict-aliasing, then you get problems in programs which are not aliasing-clean. The best solution is probably to just remove the CFLAGS line from your /etc/make.conf, then rebuild everything. Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "I invented Ctrl-Alt-Delete, but Bill Gates made it famous." -- David Bradley, original IBM PC design teamReceived on Tue Oct 11 2005 - 13:34:17 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:38:45 UTC