mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
a36fa80288
* swtich to frags * or true * format * add task id
13 lines
380 B
Bash
13 lines
380 B
Bash
#!/bin/bash -eu
|
|
|
|
|
|
mkdir -p /tmp/compdbs
|
|
export KYTHE_ROOT_DIRECTORY=$SRC
|
|
export CFLAGS="$CFLAGS -gen-cdb-fragment-path /tmp/compdbs"
|
|
compile
|
|
echo "[" > /tmp/compdbs.json
|
|
cat /tmp/compdbs/*.json >> /tmp/compdbs.json
|
|
echo "{}]" >> /tmp/compdbs.json
|
|
|
|
$KYTHE_RELEASE_DIR/tools/runextractor compdb -path /tmp/compdbs.json -extractor $KYTHE_RELEASE_DIR/extractors/cxx_extractor || true
|