aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorTrumeet <yuuta@yuuta.moe>2021-10-11 13:42:49 -0700
committerTrumeet <yuuta@yuuta.moe>2021-10-11 13:42:49 -0700
commit251be34bea8d9c0a9f95f4cb2ade71b4c54b6d9b (patch)
tree6e6caf58acde1a8ad4ce81dac5009f3f7f2e440d /build
parent84fce72f4c04ca3a025fa97a54da643734cf251b (diff)
downloadeasy-tg-251be34bea8d9c0a9f95f4cb2ade71b4c54b6d9b.tar
easy-tg-251be34bea8d9c0a9f95f4cb2ade71b4c54b6d9b.tar.gz
easy-tg-251be34bea8d9c0a9f95f4cb2ade71b4c54b6d9b.tar.bz2
easy-tg-251be34bea8d9c0a9f95f4cb2ade71b4c54b6d9b.zip
remove pthread support
Diffstat (limited to 'build')
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index 9191837..c906eec 100755
--- a/build
+++ b/build
@@ -1,5 +1,5 @@
#!/bin/sh
set -ex
-cc -o easy-td.o -std=c99 -I. -DTG_ENABLE_PTHREAD -DTG_DEBUG -fsanitize=address -rdynamic -O0 -g3 -c easy-tg.c
+cc -o easy-td.o -std=c99 -I. -DTG_DEBUG -fsanitize=address -rdynamic -O0 -g3 -c easy-tg.c
cc -o example.o -std=c99 -I. -DAPI_ID=114514 -DAPI_HASH="\"hhhhhAAAAA\"" -fsanitize=address -rdynamic -O0 -g3 -c example.c
cc -o example -std=c99 -lpthread -ltdjson -ljson-c -fsanitize=address easy-td.o example.o