blob: f7638f62907ce62eeb460e75e600e985d36825c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# Copyright Andrey Semashev 2020.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
import atomic-arch-config ;
lib synchronization ;
explicit synchronization ;
exe has_synchronization_lib : has_synchronization_lib.cpp : <library>synchronization ;
explicit has_synchronization_lib ;
obj has_sse2 : has_sse2.cpp : <conditional>@atomic-arch-config.sse2-flags ;
explicit has_sse2 ;
obj has_sse41 : has_sse41.cpp : <conditional>@atomic-arch-config.sse41-flags ;
explicit has_sse41 ;
|