2
0
mirror of https://github.com/boostorg/atomic.git synced 2026-01-19 04:02:09 +00:00
Files
atomic/config/Jamfile.v2
Andrey Semashev e57de610db Use a relative path to atomic-arch-config instead of import-search.
Using a relative path is more explicit and should avoid a potential
name clash in case if there appears a different b2 module with the same
name in a different search location.
2025-06-19 02:34:11 +03:00

24 lines
826 B
Plaintext

#
# Copyright Andrey Semashev 2020-2025.
# 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 ../build/atomic-arch-config ;
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 ;
obj has_pthread_cond_clockwait : has_pthread_cond_clockwait.cpp ;
explicit has_pthread_cond_clockwait ;
obj has_cxx11_nontrivial_union : has_cxx11_nontrivial_union.cpp ;
explicit has_cxx11_nontrivial_union ;
obj has_sufficient_cxx11_type_traits : has_sufficient_cxx11_type_traits.cpp : <library>/boost/config//boost_config ;
explicit has_sufficient_cxx11_type_traits ;