mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-27 17:00:41 -04:00
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>
12 lines
437 B
Bash
Executable file
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
|
|
|