File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,13 @@ if [ "${ARCH}" == "32" ]
2020then
2121 export BIT32=" ON"
2222 export ARCH_FLAG=" -m32"
23+ ZLIB32=" -DZLIB_LIBRARY=/usr/lib32/libz.a"
2324else
2425 export BIT32=" OFF"
2526 export ARCH_FLAG=" -m64"
2627fi
2728
28- cmake -DMSGPACK_CXX11=${CXX11} -DMSGPACK_CXX17=${CXX17} -DMSGPACK_32BIT=${BIT32} -DMSGPACK_CHAR_SIGN=${CHAR_SIGN} -DMSGPACK_DEFAULT_API_VERSION=${API_VERSION} -DMSGPACK_USE_X3_PARSE=${X3_PARSE} -DCMAKE_CXX_FLAGS=${ARCH_FLAG} ..
29+ cmake -DMSGPACK_CXX11=${CXX11} -DMSGPACK_CXX17=${CXX17} -DMSGPACK_32BIT=${BIT32} -DMSGPACK_CHAR_SIGN=${CHAR_SIGN} -DMSGPACK_DEFAULT_API_VERSION=${API_VERSION} -DMSGPACK_USE_X3_PARSE=${X3_PARSE} -DCMAKE_CXX_FLAGS=${ARCH_FLAG} ${ZLIB32} ..
2930
3031ret=$?
3132if [ $ret -ne 0 ]
You can’t perform that action at this time.
0 commit comments