Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
dd90059
working on getting 'C' version for td04ad checked
repagh Jun 4, 2018
72a9875
test adding
repagh Jun 6, 2018
46171e5
work in progress
repagh Jun 14, 2018
f897e75
- corrected TD04AD.f to handle the case of 'C' and static gain tf
repagh Jun 15, 2018
3c6f49f
another fix
repagh Jun 15, 2018
253ed42
working TD04AD.f, does not crash any more on edge cases (N=0, NR=0),
repagh Jun 20, 2018
54f0510
fix conda recipe, anaconda 5
repagh Jun 22, 2018
a2298fd
delete separate build.sh/bld.bat
repagh Jun 23, 2018
6d30bd0
further testing
repagh Jun 26, 2018
f01ba18
- re-worked windows build to use Flang fortran and vc14 linkage
repagh Jun 26, 2018
a47bf6f
Merge remote-tracking branch 'python-control/master'
repagh Jul 1, 2018
b7d4048
Merge remote-tracking branch 'python-control/master'
repagh Jul 11, 2018
2ee5339
Conversion to building with scikit-build. Uses cmake for better
repagh Jul 11, 2018
be8cdfa
Add a comment on the many manual selections needed for Windows build.
repagh Jul 11, 2018
078b928
- install cmake and scikit-build with .travis.yml
repagh Jul 26, 2018
dc746ec
pip scikit-build to right location!
repagh Jul 26, 2018
0875919
hack a pip install for scikit-build
repagh Aug 14, 2018
01d85d3
- corrected link libraries for Linux in CMakeLists.txt
repagh Aug 15, 2018
84b4d4a
work in progress status
repagh Aug 15, 2018
0af0b31
- a working version? at least conda build succeeded once
repagh Aug 15, 2018
0b513ad
windows version seems to work now
repagh Aug 16, 2018
5738b11
environment variable use removed again
repagh Aug 16, 2018
04889ce
need fortran compiler env var
repagh Aug 16, 2018
790cc9e
Further tweaks, not works on OSX
repagh Aug 17, 2018
a237ce6
to be sure, also remove dependencies of scikit-build on windows
repagh Aug 17, 2018
d4df101
convert the build system to use scikit-build
repagh Aug 17, 2018
eae3c4b
Merge branch 'build-with-scikit-build' of https://github.com/repagh/S…
repagh Aug 17, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add a comment on the many manual selections needed for Windows build.
  • Loading branch information
repagh committed Jul 11, 2018
commit be8cdfa9ba3ccd4c131e79d8e990a96e5deae4ca
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ def setup_package():
zip_safe=False,
)

# Windows builds use Flang.
# Flang detection and configuration is not automatic yet; the CMAKE
# settings below are to circumvent that; when scikit-build and cmake
# tools have improved, most of this might be removed?
import platform
if platform.system() == 'Windows':
pbase = r'/'.join(sys.executable.split(os.sep)[:-1])
Expand Down