From: Holger V. <hol...@un...> - 2008-08-27 21:31:38
|
Stephan, optmising is set to -O2 in configure.in. 203 if test "$enable_debug" = "no"; then 204 if test "x$GCC" = "xyes"; then 205 AC_MSG_WARN(Removing debugging option!) 206 CFLAGS="$CFLAGS -O2 -Wall" 207 else 208 AC_MSG_WARN(Removing debugging option!) 209 CFLAGS="$CFLAGS" 210 fi If I use "-mtune=pentium4 -O3 -msse3" instead of "-O2" (Mingw gcc 3.4.5) I do not see much speed difference. Regards Holger th...@mi... schrieb: > Hello all, > > to gain speed you should probably try too add additional gcc- > options (when --disable-debug is also applied) like -mtune=pentium4 > -O6 (-O3) -msse3 ... but in the "configure.in" there is as far as I have > seen it no optimization enabled ... > > > > Regards, > Stephan > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Ngspice-devel mailing list > Ngs...@li... > https://lists.sourceforge.net/lists/listinfo/ngspice-devel > > > |