Changes between Initial Version and Version 1 of Ticket #1894


Ignore:
Timestamp:
Apr 3, 2013, 5:46:30 AM (11 years ago)
Author:
historic_bruno
Comment:

This should be reported upstream as well: http://code.google.com/p/nvidia-texture-tools/issues/list

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1894 – Description

    initial v1  
    1 As in summary; libraries/source/nvtt/src/cmake/OptimalOptions.cmake contains the section copied below. This prevents pyrogenesis from starting after compilation on my Pentium D processor, as -march=athlon64 is not valid. Removing the '-march=athlon64', or the entire section, resoves the problem.
     1As in summary; [source:/ps/trunk/libraries/source/nvtt/src/cmake/OptimalOptions.cmake libraries/source/nvtt/src/cmake/OptimalOptions.cmake] contains the section copied below. This prevents pyrogenesis from starting after compilation on my Pentium D processor, as -march=athlon64 is not valid. Removing the '-march=athlon64', or the entire section, resoves the problem.
    22
    33Thanks to those on IRC! :-)
    44
     5{{{
    56IF(NV_SYSTEM_PROCESSOR STREQUAL "x86_64")
    67                SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=athlon64")
    78                #SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=athlon64 -msse3")
    8         ENDIF(NV_SYSTEM_PROCESSOR STREQUAL "x86_64")
     9ENDIF(NV_SYSTEM_PROCESSOR STREQUAL "x86_64")
     10}}}