blob: a3c31dd70e34358ce5d89f4a37c7741c0cbb2e5e [file] [log] [blame]
#!/bin/sh
TRACING_D="$1/runtime/Tracing.d";
TRACING_H="$BUILT_PRODUCTS_DIR/DerivedSources/JavaScriptCore/TracingDtrace.h";
if [[ "${HAVE_DTRACE}" = "1" && "${TRACING_D}" -nt "${TRACING_H}" ]]; then
dtrace -h -o "${TRACING_H}" -s "${TRACING_D}";
fi;