mirror of https://github.com/openXC7/prjxray.git
Merge pull request #386 from mcmasterg/reseg_dir
reseg: segmatch only build dir
This commit is contained in:
commit
cb5d2776f9
|
|
@ -7,13 +7,13 @@ set -ex
|
|||
FUZDIR=$PWD
|
||||
pushd build
|
||||
|
||||
for f in $(find -name design.bits) ; do
|
||||
for f in $(find -name design.bits |sort) ; do
|
||||
pushd $(dirname $f)
|
||||
python3 $FUZDIR/generate.py
|
||||
popd
|
||||
done
|
||||
popd
|
||||
|
||||
${XRAY_SEGMATCH} -o build/tmp.segbits $(find -name 'segdata_*.txt')
|
||||
${XRAY_SEGMATCH} -o build/tmp.segbits $(find build -name 'segdata_*.txt' |sort)
|
||||
cat build/tmp.segbits
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue