skip minor version in fftw path
This commit is contained in:
parent
56bc8af358
commit
ca8481d9fc
|
|
@ -11,12 +11,15 @@
|
||||||
/xspice/cmpp/Debug/
|
/xspice/cmpp/Debug/
|
||||||
/xspice/cmpp/Release/
|
/xspice/cmpp/Release/
|
||||||
/xspice/cmpp/tmp-bison/
|
/xspice/cmpp/tmp-bison/
|
||||||
|
/xspice/cmpp/x64/
|
||||||
/xspice/icm/
|
/xspice/icm/
|
||||||
/xspice/intermediate/
|
/xspice/intermediate/
|
||||||
|
|
||||||
|
/x64/
|
||||||
/vngspice/
|
/vngspice/
|
||||||
/vngspice-fftw/
|
/vngspice-fftw/
|
||||||
/sharedspice/
|
/sharedspice/
|
||||||
|
|
||||||
/.vs/
|
/.vs/
|
||||||
*.vc.db
|
*.vc.db
|
||||||
|
spinit
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
../../fftw-3.3.5-dll32 and ../../fftw-3.3.5-dll64
|
../../fftw-3.3-dll32 and ../../fftw-3.3-dll64
|
||||||
are the places to deploy the appropriate 32/64 bit version
|
are the places to deploy the appropriate 32/64 bit version
|
||||||
of the fftw3 libraries under VC++ which can be found here:
|
of the fftw3 libraries under VC++ which can be found here:
|
||||||
|
|
||||||
http://www.fftw.org/install/windows.html
|
http://www.fftw.org/install/windows.html
|
||||||
|
|
||||||
More precisely (here in case of the 32 bit version),
|
More precisely (here in case of the 32 bit version 3.3.5),
|
||||||
- you have to create the directory ../../fftw-3.3.5-dll32
|
- you have to create the directory ../../fftw-3.3-dll32
|
||||||
(which is side by side and thus outside of the ngspice source tree)
|
(which is side by side and thus outside of the ngspice source tree)
|
||||||
- you have to fetch fftw-3.3.5-dll32.zip and deploy it there
|
- you have to fetch fftw-3.3.5-dll32.zip and deploy it there
|
||||||
- you have to unpack this .zip there
|
- you have to unpack this .zip there
|
||||||
|
|
@ -25,7 +25,7 @@ to a place which is in your PATH environment.
|
||||||
|
|
||||||
(compile
|
(compile
|
||||||
"url=ftp://ftp.fftw.org/pub/fftw
|
"url=ftp://ftp.fftw.org/pub/fftw
|
||||||
for i in fftw-3.3.5-dll32 fftw-3.3.5-dll64 ; do
|
for i in fftw-3.3-dll32 fftw-3.3-dll64 ; do
|
||||||
dst=../../$i
|
dst=../../$i
|
||||||
mkdir -p $dst
|
mkdir -p $dst
|
||||||
(cd $dst && wget $url/$i.zip && unzip $i.zip)
|
(cd $dst && wget $url/$i.zip && unzip $i.zip)
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ goto end
|
||||||
|
|
||||||
:copy2
|
:copy2
|
||||||
copy %1\ngspice.exe %dst%\bin\
|
copy %1\ngspice.exe %dst%\bin\
|
||||||
copy ..\..\fftw-3.3.5-dll32\libfftw3-3.dll %dst%\bin\
|
copy ..\..\fftw-3.3-dll32\libfftw3-3.dll %dst%\bin\
|
||||||
goto end
|
goto end
|
||||||
|
|
||||||
:b64
|
:b64
|
||||||
|
|
@ -62,6 +62,6 @@ goto end
|
||||||
|
|
||||||
:copy2-64
|
:copy2-64
|
||||||
copy %1\ngspice.exe %dst%\bin\
|
copy %1\ngspice.exe %dst%\bin\
|
||||||
copy ..\..\fftw-3.3.5-dll64\libfftw3-3.dll %dst%\bin\
|
copy ..\..\fftw-3.3-dll64\libfftw3-3.dll %dst%\bin\
|
||||||
|
|
||||||
:end
|
:end
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue