-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconanfile.py
145 lines (127 loc) · 4.95 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
# Copyright 2024 Khalil Estell
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from conan import ConanFile
from conan.tools.cmake import CMake, cmake_layout
from conan.tools.files import copy
from conan.tools.build import check_min_cppstd
from conan.errors import ConanInvalidConfiguration
import os
required_conan_version = ">=2.0.14"
class libhal_exceptions_conan(ConanFile):
name = "libhal-exceptions"
license = "Apache-2.0"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://github.com/libhal/libhal-exceptions"
description = (
"Exception handling runtime support for the libhal ecosystem.")
topics = ("exceptions", "error", "terminate", "unexpected")
settings = "compiler", "build_type", "os", "arch"
generators = "CMakeDeps", "CMakeToolchain", "VirtualBuildEnv"
exports_sources = ("include/*", "tests/*", "LICENSE",
"CMakeLists.txt", "src/*")
options = {
"default_allocator": [True, False],
"runtime": [
"builtin",
"estell",
]
}
default_options = {
"default_allocator": True,
"runtime": "builtin",
}
@property
def _min_cppstd(self):
return "20"
@property
def _compilers_minimum_version(self):
return {
"gcc": "11",
"clang": "14",
}
@property
def _is_arm_cortex(self):
return str(self.settings.arch).startswith("cortex-")
@property
def _runtime_select(self):
if self._is_arm_cortex and self.options.runtime == "builtin":
return "ARM_CORTEX_GCC"
elif self._is_arm_cortex and self.options.runtime == "estell":
return "ARM_CORTEX_ESTELL"
def validate(self):
if self.settings.get_safe("compiler.cppstd"):
check_min_cppstd(self, self._min_cppstd)
def layout(self):
cmake_layout(self)
def build_requirements(self):
self.tool_requires("cmake/3.27.1")
self.tool_requires("libhal-cmake-util/[^4.0.3]")
self.test_requires("boost-ext-ut/1.1.9")
def requirements(self):
self.requires("libhal-util/[^5.0.0]")
def build(self):
cmake = CMake(self)
configure_variables = {"RUNTIME": self._runtime_select}
cmake.configure(variables=configure_variables)
cmake.build()
def package(self):
copy(self,
"LICENSE",
dst=os.path.join(self.package_folder, "licenses"),
src=self.source_folder)
copy(self,
"*.h",
dst=os.path.join(self.package_folder, "include"),
src=os.path.join(self.source_folder, "include"))
copy(self,
"*.hpp",
dst=os.path.join(self.package_folder, "include"),
src=os.path.join(self.source_folder, "include"))
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.libs = ["libhal-exceptions"]
self.cpp_info.set_property("cmake_target_name", "libhal::exceptions")
lib_path = os.path.join(self.package_folder,
'lib', 'liblibhal-exceptions.a')
if self.options.runtime == "estell":
self.cpp_info.exelinkflags.extend([
"-fexceptions",
"-Wl,--wrap=__cxa_throw",
"-Wl,--wrap=__cxa_rethrow",
"-Wl,--wrap=__cxa_end_catch",
"-Wl,--wrap=__cxa_begin_catch",
"-Wl,--wrap=__cxa_end_cleanup",
"-Wl,--wrap=__gnu_unwind_pr_common",
"-Wl,--wrap=__aeabi_unwind_cpp_pr0",
"-Wl,--wrap=_sig_func",
"-Wl,--wrap=__gxx_personality_v0",
"-Wl,--wrap=deregister_tm_clones",
"-Wl,--wrap=register_tm_clones",
# Ensure that all symbols are added to the linker's symbol table
"-Wl,--whole-archive",
lib_path,
"-Wl,--no-whole-archive",
])
# Keep this for now, will update this for the runtime select
if self._is_arm_cortex:
self.cpp_info.exelinkflags.extend([
"-Wl,--wrap=__cxa_allocate_exception",
"-Wl,--wrap=__cxa_free_exception",
"-Wl,--wrap=__cxa_call_unexpected",
# Ensure that all symbols are added to the linker's symbol table
"-Wl,--whole-archive",
lib_path,
"-Wl,--no-whole-archive",
])