This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
conanfile.py
147 lines (131 loc) · 6.63 KB
/
conanfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import shutil
import glob
from conans import ConanFile, CMake, tools
from conans.model.version import Version
from conans.errors import ConanException
from conans.tools import SystemPackageTool
# python 2 / 3 StringIO import
try:
from StringIO import StringIO
except ImportError:
from io import StringIO
from conans.errors import ConanInvalidConfiguration
class LapackConan(ConanFile):
name = "lapack"
version = "3.7.1"
license = "BSD-3-Clause"
homepage = "https://github.com/Reference-LAPACK/lapack"
description = "Fortran subroutines for solving problems in numerical linear algebra"
url = "https://github.com/conan-community/conan-lapack"
settings = "os", "arch", "compiler", "build_type"
options = {"shared": [True, False], "fPIC": [True, False], "visual_studio": [True, False]}
default_options = {"shared": False, "visual_studio": False, "fPIC": True}
exports = "LICENSE"
exports_sources = "CMakeLists.txt"
generators = "cmake"
requires = "zlib/1.2.11@conan/stable"
deprecated = True
_source_subfolder = "source_subfolder"
_build_subfolder = "build_subfolder"
def configure(self):
del self.settings.compiler.libcxx
if self.settings.os == "Macos" and \
self.settings.compiler == "apple-clang" and \
Version(self.settings.compiler.version.value) < "8.0":
raise ConanInvalidConfiguration("lapack requires apple-clang >=8.0")
if self.options.visual_studio and not self.options.shared:
raise ConanInvalidConfiguration("only shared builds are supported for Visual Studio")
if self.settings.compiler == "Visual Studio" and not self.options.visual_studio:
raise ConanInvalidConfiguration("This library needs option 'visual_studio=True' to be consumed")
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def source(self):
sha256 = "4e710786b887210cd3e0f1c8222e53c17f74bddc95d02c6afc20b18d6c136790"
tools.get("{}/archive/v{}.zip".format(self.homepage, self.version), sha256=sha256)
os.rename("{}-{}".format(self.name, self.version), self._source_subfolder)
def build_requirements(self):
if self.settings.os == "Windows":
self.build_requires("mingw_installer/1.0@conan/stable")
def system_requirements(self):
if tools.which("gfortran") is not None:
# Prefere local install
return
installer = SystemPackageTool()
if tools.os_info.is_linux:
if tools.os_info.with_zypper or tools.os_info.with_pacman:
installer.install("gcc-fortran")
elif tools.os_info.with_yum:
installer.install("gcc-gfortran")
else:
installer.install("gfortran")
versionfloat = Version(self.settings.compiler.version.value)
if self.settings.compiler == "gcc":
if versionfloat < "5.0":
installer.install("libgfortran-{}-dev".format(versionfloat))
else:
installer.install("libgfortran-{}-dev".format(int(versionfloat)))
if tools.os_info.is_macos and Version(self.settings.compiler.version.value) > "7.3":
try:
installer.install("gcc", update=True, force=True)
except Exception:
self.output.warn("brew install gcc failed. Tying to fix it with 'brew link'")
self.run("brew link --overwrite gcc")
def _configure_cmake(self):
cmake = CMake(self)
cmake.definitions["CMAKE_GNUtoMS"] = self.options.visual_studio
cmake.definitions["BUILD_TESTING"] = False
cmake.definitions["LAPACKE"] = True
cmake.definitions["CBLAS"] = True
cmake.configure(build_dir=self._build_subfolder)
return cmake
def build(self):
if self.settings.compiler == "Visual Studio":
raise ConanInvalidConfiguration("This library cannot be built with Visual Studio. Please use MinGW to "
"build it and option 'visual_studio=True' to build and consume.")
cmake = self._configure_cmake()
for target in ["blas", "cblas", "lapack", "lapacke"]:
cmake.build(target=target)
def package(self):
self.copy(pattern="LICENSE", dst="licenses", src=self._source_subfolder)
cmake = self._configure_cmake()
cmake.install()
if self.options.visual_studio:
for bin_path in self.deps_cpp_info.bin_paths: # Copy MinGW dlls for Visual Studio consumers
self.copy(pattern="*seh*.dll", dst="bin", src=bin_path, keep_path=False)
self.copy(pattern="*sjlj*.dll", dst="bin", src=bin_path, keep_path=False)
self.copy(pattern="*dwarf2*.dll", dst="bin", src=bin_path, keep_path=False)
self.copy(pattern="*quadmath*.dll", dst="bin", src=bin_path, keep_path=False)
self.copy(pattern="*winpthread*.dll", dst="bin", src=bin_path, keep_path=False)
self.copy(pattern="*gfortran*.dll", dst="bin", src=bin_path, keep_path=False)
with tools.chdir(os.path.join(self.package_folder, "lib")):
libs = glob.glob("lib*.a")
for lib in libs:
vslib = lib[3:-2] + ".lib"
self.output.info('renaming %s into %s' % (lib, vslib))
shutil.move(lib, vslib)
def package_id(self):
if self.options.visual_studio:
self.info.settings.compiler = "Visual Studio"
del self.info.settings.compiler.version
del self.info.settings.compiler.runtime
del self.info.settings.compiler.toolset
def package_info(self):
# the order is important for static builds
self.cpp_info.libs = ["lapacke", "lapack", "blas", "cblas", "gfortran", "quadmath"]
if self.settings.os == "Linux":
self.cpp_info.libs.append("m")
if self.options.visual_studio and self.options.shared:
self.cpp_info.libs = ["lapacke.dll.lib", "lapack.dll.lib", "blas.dll.lib", "cblas.dll.lib"]
self.cpp_info.libdirs = ["lib"]
if tools.os_info.is_macos:
brewout = StringIO()
try:
self.run("gfortran --print-file-name libgfortran.dylib", output=brewout)
except Exception as error:
raise ConanException("Failed to run command: {}. Output: {}".format(error, brewout.getvalue()))
lib = os.path.dirname(os.path.normpath(brewout.getvalue().strip()))
self.cpp_info.libdirs.append(lib)