Browse Source

Support i386 with optimizations

tags/3.1
xtkoba 2 years ago
parent
commit
0d12bff1be
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      cmake/ArchDep.cmake

+ 3
- 3
cmake/ArchDep.cmake View File

") ")
ASM_OP(HAVE_DOLLARMACRO "dollar macro convention") ASM_OP(HAVE_DOLLARMACRO "dollar macro convention")


# For now we support only x86_64 architecture with optimizations
IF("${ARCH}" STREQUAL "x86_64")
# For now we support only x86_64/i386 architecture with optimizations
IF("${ARCH}" STREQUAL "x86_64" OR "${ARCH}" STREQUAL "i386")
IF(NOT HAVE_SLASHMACRO AND NOT HAVE_DOLLARMACRO) IF(NOT HAVE_SLASHMACRO AND NOT HAVE_DOLLARMACRO)
MESSAGE(FATAL_ERROR "Your assembler cannot compile macros, please check your CMakeFiles/CMakeError.log") MESSAGE(FATAL_ERROR "Your assembler cannot compile macros, please check your CMakeFiles/CMakeError.log")
ENDIF() ENDIF()
ELSEIF((CMAKE_C_COMPILER_ID MATCHES "MSVC")) ELSEIF((CMAKE_C_COMPILER_ID MATCHES "MSVC"))
ADD_COMPILE_OPTIONS(/arch:SSE2) ADD_COMPILE_OPTIONS(/arch:SSE2)
ENDIF() ENDIF()
ENDIF()
ENDIF()

Loading…
Cancel
Save