ibex/syn/translate_timing_rpts.sh
Harry Callahan db07ab174e Change '/bin/bash' shebangs to '/usr/bin/env bash'
This improves portability across different unix-like operating systems
by using bash from the PATH, instead of bash from a hardcoded location.

Signed-off-by: Harry Callahan <hcallahan@lowrisc.org>
2025-06-23 10:48:34 +00:00

12 lines
437 B
Bash
Executable file

#!/usr/bin/env bash
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
./python/build_translated_names.py ibex_top ./"$LR_SYNTH_OUT_DIR"/generated ./"$LR_SYNTH_OUT_DIR"/reports/timing/*.csv.rpt
for file in ./"$LR_SYNTH_OUT_DIR"/reports/timing/*.csv.rpt; do
./python/translate_timing_csv.py "$file" ./"$LR_SYNTH_OUT_DIR"/generated
done