Zhekar Posted March 27, 2020 Share Posted March 27, 2020 Hi! I need to compile and use torque3D on my NVidia Jetson Nano (https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-nano/).After Torque3d sources are compiled correctly I start # sudo make installand have this error:c++: error: unrecognized command line option ‘-msse’; did you mean ‘-fdse’? Tools/CMake/CMakeFiles/opcode.dir/build.make:86: recipe for target 'Tools/CMake/CMakeFiles/opcode.dir/__/__/Engine/lib/opcode/OPC_AABBTree.cpp.o' failed make[2]: *** [Tools/CMake/CMakeFiles/opcode.dir/__/__/Engine/lib/opcode/OPC_AABBTree.cpp.o] Error 1 How I can fix this? Quote Link to comment Share on other sites More sharing options...
Zhekar Posted March 28, 2020 Author Share Posted March 28, 2020 solution to this problem replacementset(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CXX_FLAG32} -Wundef -msse -pipe -Wfatal-errors ${TORQUE_ADDITIONAL_LINKER_FLAGS} -Wl,-rpath,'$$ORIGIN'") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CXX_FLAG32} -Wundef -msse -pipe -Wfatal-errors ${TORQUE_ADDITIONAL_LINKER_FLAGS} -Wl,-rpath,'$$ORIGIN'")toIF(NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CXX_FLAG32} -Wundef -msse -pipe -Wfatal-errors ${TORQUE_ADDITIONAL_LINKER_FLAGS} -Wl,-rpath,'$$ORIGIN'") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CXX_FLAG32} -Wundef -msse -pipe -Wfatal-errors ${TORQUE_ADDITIONAL_LINKER_FLAGS} -Wl,-rpath,'$$ORIGIN'") ENDIF(NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64") On Torque3d.cmakeBut I have a new problems with unknown mnenonic "pause" -- "pause" Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.