yg0x01 commented on a change in pull request #338:
URL:
https://github.com/apache/rocketmq-client-cpp/pull/338#discussion_r549551038
##########
File path: CMakeLists.txt
##########
@@ -183,11 +183,14 @@ ELSE ()
# -rdynamic
)
- if (CMAKE_BUILD_BITS EQUAL 32)
- list(APPEND CXX_FLAGS "-m32")
- else () #not-condition
- list(APPEND CXX_FLAGS "-m64")
- endif ()
+ option(BUILD_FOR_ARM "Build for arm64 platform" ON)
+ if (NOT ${BUILD_FOR_ARM} MATCHES "ON")
Review comment:
Ok.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]