We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For anyone interested I was able to compile on windows easily :
cd dts_src cl /O2 /EHsc *.cpp cl /FeDTS *.obj move DTS.exe ...
cd .. cd dts_convert cl /O2 /EHsc *.cpp cl /FeCNV *.obj move CNV.exe ...
cd .. cd dts_generate cl /O2 /EHsc *.cpp cl /FeGEN *.obj move GEN ... cd ..
The text was updated successfully, but these errors were encountered:
Is it possible to attach the windows exe file here?
Sorry, something went wrong.
No branches or pull requests
For anyone interested I was able to compile on windows easily :
add #include in vertex.cpp and CNTCell.cpp
change line 29 in Job.cpp by
else if (Exe.size()>3 && (Exe.at(Exe.size()-4)!='/' && Exe.at(Exe.size()-4)!='\' ))
windows use "" so when executing it looks like ......\DTS -in input_2.dts -top top.top
cd dts_src
cl /O2 /EHsc *.cpp
cl /FeDTS *.obj
move DTS.exe ...
cd ..
cd dts_convert
cl /O2 /EHsc *.cpp
cl /FeCNV *.obj
move CNV.exe ...
cd ..
cd dts_generate
cl /O2 /EHsc *.cpp
cl /FeGEN *.obj
move GEN ...
cd ..
The text was updated successfully, but these errors were encountered: