mirror of
https://github.com/overte-org/overte.git
synced 2025-07-22 21:06:24 +02:00
Fix misspelled -msse3
This commit is contained in:
parent
f58368faab
commit
b1aa068800
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ if( NOT WIN32 )
|
|||
# SetAlignedPointerInInternalField requires at least 2 byte alignment and -falign-functions will set alignment
|
||||
# to machine specific value which should be greater than 2.
|
||||
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
|
||||
set(CMAKE_CXX_FLAGS "-falign-functions -fPIC -m64 -mss3" CACHE STRING "C++ compiler flags for all build types.")
|
||||
set(CMAKE_C_FLAGS "-falign-functions -fPIC -m64 -mss3" CACHE STRING "C compiler flags for all build types.")
|
||||
set(CMAKE_CXX_FLAGS "-falign-functions -fPIC -m64 -msse3" CACHE STRING "C++ compiler flags for all build types.")
|
||||
set(CMAKE_C_FLAGS "-falign-functions -fPIC -m64 -msse3" CACHE STRING "C compiler flags for all build types.")
|
||||
elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64")
|
||||
# TODO: Find out which architecture optimizations to use on aarch64.
|
||||
# We should probably target the 64bit version of the Raspberry Pi 2 as minimum.
|
||||
|
|
Loading…
Reference in a new issue