mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
8 lines
249 B
Plaintext
8 lines
249 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cat toxav/*.c toxcore/*.c toxencryptsave/*.c |
|
||
|
clang "$(pkg-config --cflags libsodium opus vpx)" \
|
||
|
-Itoxav -Itoxcore -Itoxencryptsave -S -emit-llvm -xc - -o- |
|
||
|
opt -analyze -print-callgraph 2>&1 |
|
||
|
other/analysis/check_recursion
|