diff options
author | AlexSm <alex@ydb.tech> | 2024-01-18 11:28:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 11:28:56 +0100 |
commit | 9d0a3761b3201e0d9db879a7adf91876ebdb0564 (patch) | |
tree | 541d11ac878c18efd7ebca81e35112aa0fef995b /build/export_generators/hardcoded-cmake/cmake/conan-profiles | |
parent | 404ef8886ecc9736bc58ade6da2fbd83b486a408 (diff) | |
download | ydb-9d0a3761b3201e0d9db879a7adf91876ebdb0564.tar.gz |
Library import 8 (#1074)
* Library import 8
* Add contrib/libs/cxxsupp/libcxx/include/__verbose_abort
Diffstat (limited to 'build/export_generators/hardcoded-cmake/cmake/conan-profiles')
7 files changed, 127 insertions, 0 deletions
diff --git a/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.arm64.profile b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.arm64.profile new file mode 100644 index 0000000000..6147d99225 --- /dev/null +++ b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.arm64.profile @@ -0,0 +1,15 @@ +include(default) +[settings] +arch=armv8 +build_type=Release +compiler=clang +compiler.libcxx=libc++ +compiler.version=14 +compiler.cppstd=20 +os=Android +os.api_level=21 +[tool_requires] +android-ndk/r25 +[options] +[env] + diff --git a/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.armv7.profile b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.armv7.profile new file mode 100644 index 0000000000..57d8f55785 --- /dev/null +++ b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.armv7.profile @@ -0,0 +1,15 @@ +include(default) +[settings] +arch=armv7 +build_type=Release +compiler=clang +compiler.libcxx=libc++ +compiler.version=14 +compiler.cppstd=20 +os=Android +os.api_level=21 +[tool_requires] +android-ndk/r25 +[options] +[env] + diff --git a/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.x86.profile b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.x86.profile new file mode 100644 index 0000000000..d8b73b992c --- /dev/null +++ b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.x86.profile @@ -0,0 +1,15 @@ +include(default) +[settings] +arch=x86 +build_type=Release +compiler=clang +compiler.libcxx=libc++ +compiler.version=14 +compiler.cppstd=20 +os=Android +os.api_level=21 +[tool_requires] +android-ndk/r25 +[options] +[env] + diff --git a/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.x86_64.profile b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.x86_64.profile new file mode 100644 index 0000000000..50ad337afa --- /dev/null +++ b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/android.x86_64.profile @@ -0,0 +1,15 @@ +include(default) +[settings] +arch=x86_64 +build_type=Release +compiler=clang +compiler.libcxx=libc++ +compiler.version=14 +compiler.cppstd=20 +os=Android +os.api_level=21 +[tool_requires] +android-ndk/r25 +[options] +[env] + diff --git a/build/export_generators/hardcoded-cmake/cmake/conan-profiles/linux.aarch64.profile b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/linux.aarch64.profile new file mode 100644 index 0000000000..6945b1d777 --- /dev/null +++ b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/linux.aarch64.profile @@ -0,0 +1,28 @@ +include(default) + +target_host=aarch64-linux-gnu + +[settings] +arch=armv8 +build_type=Release +compiler=gcc +compiler.libcxx=libstdc++11 +compiler.version=12 +compiler.cppstd=20 +os=Linux +[options] + +[env] +CONAN_CMAKE_FIND_ROOT_PATH=/usr/$target_host +CONAN_CMAKE_SYSROOT=/usr/$target_host +SYSROOT=/usr/$target_host +CC=$target_host-gcc +CXX=$target_host-g++ +CXXFLAGS="-I/usr/$target_host/include/" +CFLAGS="-I/usr/$target_host/include/" +CHOST=$target_host +AR=$target_host-ar +AS=$target_host-as +RANLIB=$target_host-ranlib +LD=$target_host-ld +STRIP=$target_host-strip diff --git a/build/export_generators/hardcoded-cmake/cmake/conan-profiles/linux.ppc64le.profile b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/linux.ppc64le.profile new file mode 100644 index 0000000000..5ecd24d6ce --- /dev/null +++ b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/linux.ppc64le.profile @@ -0,0 +1,28 @@ +include(default) + +target_host=powerpc64le-linux-gnu + +[settings] +arch=ppc64le +build_type=Release +compiler=gcc +compiler.libcxx=libstdc++11 +compiler.version=12 +compiler.cppstd=20 +os=Linux +[options] + +[env] +CONAN_CMAKE_FIND_ROOT_PATH=/usr/$target_host +CONAN_CMAKE_SYSROOT=/usr/$target_host +SYSROOT=/usr/$target_host +CC=$target_host-gcc +CXX=$target_host-g++ +CXXFLAGS="-I/usr/$target_host/include/" +CFLAGS="-I/usr/$target_host/include/" +CHOST=$target_host +AR=$target_host-ar +AS=$target_host-as +RANLIB=$target_host-ranlib +LD=$target_host-ld +STRIP=$target_host-strip diff --git a/build/export_generators/hardcoded-cmake/cmake/conan-profiles/macos.arm64.profile b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/macos.arm64.profile new file mode 100644 index 0000000000..52ba46ab97 --- /dev/null +++ b/build/export_generators/hardcoded-cmake/cmake/conan-profiles/macos.arm64.profile @@ -0,0 +1,11 @@ +include(default) +[settings] +arch=armv8 +build_type=Release +compiler=clang +compiler.libcxx=libc++ +compiler.version=14 +compiler.cppstd=20 +os=Macos +[options] +[env] |