biobloom: use the correct standard library for Fujitsu compilers (#17327)

This commit is contained in:
ketsubouchi 2020-07-02 15:11:56 +09:00 committed by GitHub
parent a5eabfad91
commit 8a9fa9bd18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,5 +32,11 @@ def install(self, spec, prefix):
tar('-xvf', self.stage.archive_file)
with working_dir('sdsl-lite-{0}'.format(spec.version.dotted)):
if self.spec.satisfies('%fj'):
filter_file(
'stdlib=libc',
'stdlib=libstdc',
'./CMakeLists.txt'
)
helper = Executable('./install.sh')
helper(prefix)