fix(libcomposition): atomic header install location fixed

updated to the version of libcomposition which fixes the atomic header installation directory
This commit is contained in:
2026-06-12 10:53:13 -04:00
parent 405c68bdf6
commit 790e50d5c0
4 changed files with 7 additions and 2 deletions

View File

@@ -54,8 +54,12 @@ def get_include_flags() -> List[str]:
def get_compiler_flags() -> List[str]:
return get_include_flags() + get_lib_flags()
def get_extra_flags() -> List[str]:
return ['-fPIC', '-std=c++23']
def get_compiler_flags_formatted() -> int:
flags = get_compiler_flags()
flags.extend(get_extra_flags())
print(' '.join(flags))
return 0