Skip to content

Commit

Permalink
[GLUTEN-3749][VL] fix redundant Velox build (#3759)
Browse files Browse the repository at this point in the history
remove redundant velox build

Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan authored Nov 20, 2023
1 parent 5f5d18a commit 48496c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ep/build-velox/src/build_velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ function compile {
COMPILE_TYPE=$(if [[ "$BUILD_TYPE" == "debug" ]] || [[ "$BUILD_TYPE" == "Debug" ]]; then echo 'debug'; else echo 'release'; fi)
echo "COMPILE_OPTION: "$COMPILE_OPTION

export simdjson_SOURCE=BUNDLED
if [ $ARCH == 'x86_64' ]; then
make $COMPILE_TYPE EXTRA_CMAKE_FLAGS="${COMPILE_OPTION}"
elif [[ "$ARCH" == 'arm64' || "$ARCH" == 'aarch64' ]]; then
Expand All @@ -124,8 +125,6 @@ function compile {
exit 1
fi

export simdjson_SOURCE=BUNDLED
make $COMPILE_TYPE EXTRA_CMAKE_FLAGS="${COMPILE_OPTION}"
# Install deps to system as needed
if [ -d "_build/$COMPILE_TYPE/_deps" ]; then
cd _build/$COMPILE_TYPE/_deps
Expand Down

0 comments on commit 48496c0

Please sign in to comment.