mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
c26a3e223d
* add program model uv * add tool to common * remove oss fuzz tool * add docker * implement build base image * fix ret check * add builder for subimage * remove old tool * hack to avoid dupped kzip files * fixes... need to work out LD hack * fix find * justfile for building kythe * update dockerfile * add upload tool * update protobuf * move into compose * fix merge invocation * fix up invoc * bump kythe * reformat * format * format * remove unused * add lint and change version * fixes * exclude * fix formatting: * dev deps * add dep * exclude gen * fix
9 lines
268 B
Bash
9 lines
268 B
Bash
# cxx_wrapper.sh
|
|
#!/bin/bash -e
|
|
|
|
# TODO(Ian): we need to share the code from ccwrapper.sh that moves kzip files between temp and original directories
|
|
echo "Called with $@"
|
|
echo "done"
|
|
$KYTHE_RELEASE_DIR/extractors/cxx_extractor "$@" & pid=$!
|
|
$ORIG_CXX "$@"
|
|
wait "$pid" |