-
Notifications
You must be signed in to change notification settings - Fork 65
/
conanfile.py
134 lines (115 loc) · 4.47 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
# Copyright 2023 The Silkworm Authors
# 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
class SilkwormRecipe(ConanFile):
settings = 'os', 'compiler', 'build_type', 'arch'
generators = 'cmake_find_package'
def requirements(self):
self.requires('catch2/3.6.0')
self.requires('magic_enum/0.8.2')
self.requires('ms-gsl/4.0.0')
self.requires('nlohmann_json/3.11.3')
self.requires('tl-expected/1.1.0')
self.requires('zlib/1.3.1')
if self.settings.arch == 'wasm':
return
self.requires('abseil/20230125.3')
self.requires('asio-grpc/2.9.2')
self.requires('benchmark/1.6.1')
self.requires('boost/1.83.0')
self.requires('cli11/2.2.0')
self.requires('gmp/6.2.1')
self.requires('grpc/1.54.3')
self.requires('gtest/1.12.1')
self.requires('jwt-cpp/0.6.0')
self.requires('libtorrent/2.0.10')
self.requires('mimalloc/2.1.2')
self.requires('openssl/3.2.1')
self.requires('protobuf/3.21.12')
self.requires('roaring/1.1.2')
self.requires('snappy/1.1.7')
self.requires('spdlog/1.12.0')
self.requires('sqlitecpp/3.3.0')
self.requires('tomlplusplus/3.3.0')
def configure(self):
self.options['asio-grpc'].local_allocator = 'boost_container'
# Conan Center has Windows binaries built only with msvc16 and mimalloc built only with option override=False.
# In order to build mimalloc with override=True we could switch to msvc17 compiler but this would trigger a full
# rebuild from sources of all dependencies increasing build time a lot, so we prefer to keep mimalloc override
# disabled on Windows.
# The same applies also for boost with option asio_no_deprecated, so we skip configuration entirely on Windows.
if self.settings.os == 'Windows':
return
# Disable Catch2 version 3.x.x signal handling on WASM
if self.settings.arch == 'wasm':
self.options['catch2'].no_posix_signals = True
self.options['boost'].asio_no_deprecated = True
if self.settings.os == 'Macos':
cmake_osx_deployment_target = '10.14'
os_version_min_flag = f'-mmacosx-version-min={cmake_osx_deployment_target}'
self.options['boost'].extra_b2_flags = f'cxxflags="{os_version_min_flag}" linkflags="{os_version_min_flag}"'
# Disable building unused boost components
# note: changing default options above forces a boost rebuild anyway
for component in self.boost_components_unused():
setattr(self.options['boost'], 'without_' + component, True)
@staticmethod
def boost_components_unused() -> set[str]:
components_all = [
'atomic',
'chrono',
'container',
'context',
'contract',
'coroutine',
'date_time',
'exception',
'fiber',
'filesystem',
'graph',
'graph_parallel',
'iostreams',
'json',
'locale',
'log',
'math',
'mpi',
'nowide',
'program_options',
'python',
'random',
'regex',
'serialization',
'stacktrace',
'system',
'test',
'thread',
'timer',
'type_erasure',
'wave',
]
components_used = [
# asio-grpc requires:
'container',
# silkworm requires:
'iostreams',
'system',
'thread',
'url',
# Boost::iostreams requires
'random',
'regex',
# Boost::thread requires:
'atomic',
'chrono',
'date_time',
'exception',
]
return set(components_all) - set(components_used)