mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-05 09:04:08 +00:00
Add shell script (based on minisat lib) to clone and copy relevant files. Unclear if there are any changes lost that we need to patch back in.
14 lines
312 B
Bash
Executable file
14 lines
312 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mv config.h config.h.bak
|
|
rm -f *.txt *.cc *.h
|
|
git clone --depth 1 https://github.com/gtkwave/gtkwave fst_upstream
|
|
rm fst_upstream/lib/libfst/CMakeLists.txt
|
|
mv fst_upstream/lib/libfst/*.{h,c,txt} .
|
|
rm -rf fst_upstream
|
|
|
|
for src in *.c; do
|
|
mv -- "$src" "${src%.c}.cc"
|
|
done
|
|
mv config.h.bak config.h
|