Skip to content
Snippets Groups Projects
Commit d5bb1265 authored by Eric Müller's avatar Eric Müller :mountain_bicyclist: Committed by Eleni Mathioulaki
Browse files

fix(genpybind): build on llvm@15

parent 431ef1ea
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,7 @@ class Genpybind(WafPackage): ...@@ -21,6 +21,7 @@ class Genpybind(WafPackage):
version('develop', branch='develop') version('develop', branch='develop')
version('visions', branch='master', git='https://github.com/electronicvisions/genpybind') version('visions', branch='master', git='https://github.com/electronicvisions/genpybind')
version('ebrains-llvm15', tag='ebrains-9.0-a9', git='https://github.com/electronicvisions/genpybind')
version('ebrains', tag='ebrains_release-1-rc1', git='https://github.com/electronicvisions/genpybind') version('ebrains', tag='ebrains_release-1-rc1', git='https://github.com/electronicvisions/genpybind')
depends_on( depends_on(
......
...@@ -53,7 +53,7 @@ class Hxtorch(build_brainscales.BuildBrainscales): ...@@ -53,7 +53,7 @@ class Hxtorch(build_brainscales.BuildBrainscales):
('boost@1.69.0: +graph+icu+mpi+numpy+coroutine+context+filesystem+python+serialization+system+thread+program_options cxxstd=17', { "type": ('build', 'link', 'run', 'test') } ), ('boost@1.69.0: +graph+icu+mpi+numpy+coroutine+context+filesystem+python+serialization+system+thread+program_options cxxstd=17', { "type": ('build', 'link', 'run', 'test') } ),
('cereal', { "type": ('build', 'link', 'run', 'test') } ), ('cereal', { "type": ('build', 'link', 'run', 'test') } ),
('cppcheck', { "type": ('build', 'link', 'run') } ), ('cppcheck', { "type": ('build', 'link', 'run') } ),
('genpybind@ebrains', { "type": ('build', 'link') } ), ('genpybind@ebrains-llvm15', { "type": ('build', 'link') } ),
('gflags', { "type": ('build', 'link', 'run') } ), ('gflags', { "type": ('build', 'link', 'run') } ),
('googletest@1.11.0:+gmock', { "type": ('build', 'link', 'run') } ), # variadic templates needed ('googletest@1.11.0:+gmock', { "type": ('build', 'link', 'run') } ), # variadic templates needed
('inja', { "type": ('build', 'link', 'run', 'test') } ),# template engine for PPU source jit generation ('inja', { "type": ('build', 'link', 'run', 'test') } ),# template engine for PPU source jit generation
......
...@@ -51,7 +51,7 @@ class PynnBrainscales(build_brainscales.BuildBrainscales): ...@@ -51,7 +51,7 @@ class PynnBrainscales(build_brainscales.BuildBrainscales):
depends_on('boost@1.69.0: +graph+icu+mpi+numpy+coroutine+context+filesystem+python+serialization+system+thread+program_options cxxstd=17', type=('build', 'link', 'run', 'test')) depends_on('boost@1.69.0: +graph+icu+mpi+numpy+coroutine+context+filesystem+python+serialization+system+thread+program_options cxxstd=17', type=('build', 'link', 'run', 'test'))
depends_on('cereal', type=('build', 'link', 'run', 'test')) depends_on('cereal', type=('build', 'link', 'run', 'test'))
depends_on('cppcheck', type=('build', 'link', 'run')) depends_on('cppcheck', type=('build', 'link', 'run'))
depends_on('genpybind@ebrains', type=('build', 'link')) depends_on('genpybind@ebrains-llvm15', type=('build', 'link'))
depends_on('gflags', type=('build', 'link', 'run')) depends_on('gflags', type=('build', 'link', 'run'))
depends_on('googletest@1.11.0:+gmock', type=('build', 'link', 'run')) # variadic templates needed depends_on('googletest@1.11.0:+gmock', type=('build', 'link', 'run')) # variadic templates needed
depends_on('inja', type=('build', 'link', 'run', 'test')) # template engine for PPU source jit generation depends_on('inja', type=('build', 'link', 'run', 'test')) # template engine for PPU source jit generation
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment