Single Table query part 1

This commit is contained in:
2022-04-14 01:53:11 +08:00
parent 4dd571b3d2
commit c46ce578d4
25 changed files with 866 additions and 582 deletions
+10 -1
View File
@@ -1,4 +1,13 @@
OS_SUPPORT =
ifeq ($(OS),Windows_NT)
OS_SUPPORT += server/winhelper.cpp
endif
$(info $(OS_SUPPORT))
server.bin:
g++ server/server.cpp $(OS_SUPPORT) --std=c++1z -O3 -march=native -o server.bin
snippet:
g++ -shared --std=c++1z out.cpp -O3 -march=native -o dll.so
g++ -shared -fPIC --std=c++1z out.cpp -O3 -march=native -o dll.so
clean:
rm *.shm -rf