Changeset 2040
- Timestamp:
- 05/11/08 10:38:25 (6 months ago)
- Files:
-
- 1 modified
-
branches/c08_branch/source/cpu.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/c08_branch/source/cpu.cpp
r2034 r2040 359 359 360 360 /* >>chng 01 oct 09, disable gradual underflow on ultrasparc whith g++ 361 * (only needed for versions prior to 3.1, see Note 1).361 * (only needed for versions < 3.1 or >= 4.3.0, see Note 1). 362 362 * 363 363 * compile this module with: 364 * g++ [ other options... ] -I<include-dir> -DHAVE_SUNMATH -c setfpenv.c364 * g++ [ other options... ] -I<include-dir> -DHAVE_SUNMATH -c cpu.cpp 365 365 * link the program with: 366 366 * g++ -L<library-dir> -o cloudy.exe *.o -lsunmath … … 379 379 * g++ [ other options... ] -funsafe-math-optimizations -c *.c 380 380 * g++ [ other options... ] -funsafe-math-optimizations -o cloudy.exe *.o 381 * 382 * Starting with g++ 4.3.0 the -funsafe-math-optimizations option can no longer be 383 * used as it implicitly enables -fno-trapping-math, which is unsafe for Cloudy 384 * because we do trap floating point exceptions. 381 385 * 382 386 * Note 2: Don't use nonstandard_arithmetic() with CC (the SunWorks/Forte compiler);
