mirror of https://github.com/google/oss-fuzz.git
55 lines
1.9 KiB
Bash
Executable File
55 lines
1.9 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
# Copyright 2021 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
################################################################################
|
|
|
|
sed -i 's/git@/https:\/\//g' .gitmodules
|
|
sed -i 's/:taos/\/taos/g' .gitmodules
|
|
sed -i 's/\.git//g' .gitmodules
|
|
|
|
git submodule update --init --recursive
|
|
sed -i 's/-Werror//g' ./cmake/define.inc
|
|
mkdir debug && cd debug
|
|
export LDFLAGS="${CXXFLAGS}"
|
|
|
|
if [[ $SANITIZER = *coverage* ]]; then
|
|
ln -f -s /usr/bin/gold /usr/bin/ld
|
|
fi
|
|
|
|
cmake -DBUILD_HTTP=true ..
|
|
cmake --build .
|
|
|
|
cd build/bin
|
|
|
|
# Now let's build the fuzzer.
|
|
$CC $CFLAGS -DLINUX -DUSE_LIBICONV -D_LINUX -D_M_X64 \
|
|
-D_TD_LINUX -D_TD_LINUX_64 \
|
|
-I/src/tdengine/src/inc -I/src/tdengine/src/os/inc \
|
|
-I/src/tdengine/src/util/inc -I/src/tdengine/src/common/inc \
|
|
-I/src/tdengine/src/tsdb/inc -I/src/tdengine/src/query/inc \
|
|
-o sql-fuzzer.o -c $SRC/tdengine/tests/fuzz//sql-fuzzer.c
|
|
|
|
$CC $CFLAGS $LIB_FUZZING_ENGINE sql-fuzzer.o -o $OUT/sql-fuzzer \
|
|
../../../debug/src/common/CMakeFiles/common.dir/src/tglobal.c.o \
|
|
-Wl,--start-group \
|
|
../lib/libtaos_static.a ../lib/libtrpc.a ../lib/libtutil.a \
|
|
../lib/libquery.a ../lib/libtsdb.a ../lib/libcommon.a \
|
|
../lib/libtfs.a ../lib/liblz4.a ../lib/libos.a \
|
|
../lib/liboslinux.a ../lib/libz.a ../lib/librmonotonic.a \
|
|
../lib/liblua.a ../lib/libtutil.a ../lib/libTSZ.a \
|
|
-Wl,--end-group -lpthread -ldl
|
|
|
|
cp $SRC/*.options $OUT/
|