Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions projects/tdengine/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ if [[ $SANITIZER = *coverage* ]]; then
ln -f -s /usr/bin/gold /usr/bin/ld
fi

cmake -DBUILD_HTTP=true -DBUILD_TEST=false ..
# Build parser and all libraries it depends on at link time
cmake --build . --target parser nodes catalog function scalar -- -j$(nproc)
cmake -DBUILD_HTTP=true -DBUILD_TEST=false -DBUILD_LIBGSASL=false ..
cmake --build . --target parser nodes catalog function scalar extconnector -- -j$(nproc)

# Short-hand base directories
TDENGINE_SRC=/src/tdengine
Expand Down Expand Up @@ -70,6 +70,7 @@ $CC $CFLAGS $LIB_FUZZING_ENGINE sql-fuzzer.o -o $OUT/sql-fuzzer \
${BUILDLIB}/libparser.a \
${BUILDLIB}/libplanner.a \
${BUILDLIB}/libcatalog.a \
${BUILDLIB}/libextconnector.a \
${BUILDLIB}/libfunction.a \
${BUILDLIB}/libscalar.a \
${BUILDLIB}/libnodes.a \
Expand Down
Loading