mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* [TD-3197] <fix>: fix taosdemo coverity scan issues. * [TD-3197] <fix>: fix taosdemo coverity scan issue. fix subscribeTest pids uninitialized. * [TD-3197] <fix>: fix taosdemo coverity scan issues. * [TD-3197] <fix>: fix coverity scan issues. check super tbl info pointer. * [TD-3197] <fix>: fix coverity scan issues. move sub tbl query thread join into loop * [TD-3197] <fix>: fix coverity scan issues. remove unused variable * [TD-3197] <fix>: fix coverity scan issues. use more secure random library * [TD-3197] <fix>: fix coverity scan issues. use strncpy for more safe * [TD-3197] <fix>: fix taosdemo coverity scan issue. replace arc4random with rand(). * [TD-3197] <fix>: fix coverity scan issues. check stb info pointer for start time * [TD-3197] <fix>: fix coverity scan issues. fix strcpy vulnerability * [TD-3197] <fix>: fix taosdemo coverity scan issue. modify taosdemoTest2. try to check database continously. * [TD-3197] <fix>: taosdemo coverity scan issues. * [TD-3197] <fix>: fix memory leak when parsing arguments. * [TD-3197] <fix>: fix cmake strip arguments. * [TD-3197] <fix>: taosdemo coverity scan. fix cmake string manipulation. * [TD-3197]<fix>: taosdemo coverity scan issue. configDir buffer overwrite. * [TD-3197]<fix>: coverity scan issue. taosdump argument validation. * [TD-3197]<fix>: taosdemo and taosdump coverity scan issues. * [TD-3197]<fix>: taosdemo coverity scan. append result buf to file. for develop branch. * exit if read sample file failed. * fix converity scan issue. * fix coverity scan issue. * fix coverity scan memory leak. * fix resource leak reported by coverity scan. * fix taosdemo coverity scan issue. * fix tcsetattr and getchar return value determination bug. * fix coverity scan issue. * fix two more coverity scan issues. * fix stmt batch coverity scan issue. * change to portable format. * delete tests/examples/c/'-g' file * fix example compile error. Co-authored-by: Shuduo Sang <sdsang@taosdata.com>
41 lines
1.6 KiB
Makefile
41 lines
1.6 KiB
Makefile
# Copyright (c) 2017 by TAOS Technologies, Inc.
|
|
# todo: library dependency, header file dependency
|
|
|
|
ROOT=./
|
|
TARGET=exe
|
|
LFLAGS = '-Wl,-rpath,/usr/local/taos/driver/' -ltaos -lpthread -lm -lrt
|
|
CFLAGS = -O3 -g -Wall -Wno-deprecated -fPIC -Wno-unused-result -Wconversion \
|
|
-Wno-char-subscripts -D_REENTRANT -Wno-format -D_REENTRANT -DLINUX \
|
|
-Wno-unused-function -D_M_X64 -I/usr/local/taos/include -std=gnu99 \
|
|
-I../../../deps/cJson/inc -I../../../src/os/inc -I../../../src/inc \
|
|
-I../../../src/util/inc -I../../../src/common/inc
|
|
all: $(TARGET)
|
|
|
|
exe:
|
|
gcc $(CFLAGS) ./asyncdemo.c -o $(ROOT)asyncdemo $(LFLAGS)
|
|
gcc $(CFLAGS) ./demo.c -o $(ROOT)demo $(LFLAGS)
|
|
gcc $(CFLAGS) ./prepare.c -o $(ROOT)prepare $(LFLAGS)
|
|
gcc $(CFLAGS) ./stream.c -o $(ROOT)stream $(LFLAGS)
|
|
gcc $(CFLAGS) ./subscribe.c -o $(ROOT)subscribe $(LFLAGS)
|
|
gcc $(CFLAGS) ./apitest.c -o $(ROOT)apitest $(LFLAGS)
|
|
gcc $(CFLAGS) ./clientcfgtest.c -o $(ROOT)clientcfgtest $(LFLAGS)
|
|
gcc $(CFLAGS) ./clientcfgtest-wrongtype.c -o $(ROOT)clientcfgtest-wrongtype $(LFLAGS)
|
|
gcc $(CFLAGS) ./clientcfgtest-wrongjson.c -o $(ROOT)clientcfgtest-wrongjson $(LFLAGS)
|
|
gcc $(CFLAGS) ./clientcfgtest-wrongvalue.c -o $(ROOT)clientcfgtest-wrongvalue $(LFLAGS)
|
|
gcc $(CFLAGS) ./clientcfgtest-taosd.c -o $(ROOT)clientcfgtest-taosd $(LFLAGS)
|
|
|
|
|
|
clean:
|
|
rm $(ROOT)asyncdemo
|
|
rm $(ROOT)demo
|
|
rm $(ROOT)prepare
|
|
rm $(ROOT)batchprepare
|
|
rm $(ROOT)stream
|
|
rm $(ROOT)subscribe
|
|
rm $(ROOT)apitest
|
|
rm $(ROOT)clientcfgtest
|
|
rm $(ROOT)clientcfgtest-wrongtype
|
|
rm $(ROOT)clientcfgtest-wrongjson
|
|
rm $(ROOT)clientcfgtest-wrongvalue
|
|
rm $(ROOT)clientcfgtest-taosd
|
|
|