Add npm, maven, conan configs (excluding cache)
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,68 @@
|
||||
# This file was generated by Conan. Remove this comment if you edit this file or Conan
|
||||
# will destroy your changes.
|
||||
|
||||
from conan.tools.build import supported_cppstd, supported_cstd
|
||||
from conan.errors import ConanException
|
||||
|
||||
|
||||
def cppstd_compat(conanfile):
|
||||
# It will try to find packages with all the cppstd versions
|
||||
extension_properties = getattr(conanfile, "extension_properties", {})
|
||||
compiler = conanfile.settings.get_safe("compiler")
|
||||
compiler_version = conanfile.settings.get_safe("compiler.version")
|
||||
cppstd = conanfile.settings.get_safe("compiler.cppstd")
|
||||
if not compiler or not compiler_version:
|
||||
return []
|
||||
factors = [] # List of list, each sublist is a potential combination
|
||||
if cppstd is not None and extension_properties.get("compatibility_cppstd") is not False:
|
||||
cppstd_possible_values = supported_cppstd(conanfile)
|
||||
if cppstd_possible_values is None:
|
||||
conanfile.output.warning(f'No cppstd compatibility defined for compiler "{compiler}"')
|
||||
else: # The current cppst must be included in case there is other factor
|
||||
factors.append([{"compiler.cppstd": v} for v in cppstd_possible_values])
|
||||
|
||||
cstd = conanfile.settings.get_safe("compiler.cstd")
|
||||
if cstd is not None and extension_properties.get("compatibility_cstd") is not False:
|
||||
cstd_possible_values = supported_cstd(conanfile)
|
||||
if cstd_possible_values is None:
|
||||
conanfile.output.warning(f'No cstd compatibility defined for compiler "{compiler}"')
|
||||
else:
|
||||
factors.append([{"compiler.cstd": v} for v in cstd_possible_values if v != cstd])
|
||||
return factors
|
||||
|
||||
|
||||
def compatibility(conanfile):
|
||||
# By default, different compiler.cppstd are compatible
|
||||
# factors is a list of lists
|
||||
factors = cppstd_compat(conanfile)
|
||||
|
||||
# MSVC 194->193 fallback compatibility
|
||||
compiler = conanfile.settings.get_safe("compiler")
|
||||
compiler_version = conanfile.settings.get_safe("compiler.version")
|
||||
if compiler == "msvc":
|
||||
msvc_fallback = {"194": "193"}.get(compiler_version)
|
||||
if msvc_fallback:
|
||||
factors.append([{"compiler.version": msvc_fallback}])
|
||||
|
||||
# Append more factors for your custom compatibility rules here
|
||||
|
||||
# Combine factors to compute all possible configurations
|
||||
combinations = _factors_combinations(factors)
|
||||
# Final compatibility settings combinations to check
|
||||
return [{"settings": [(k, v) for k, v in comb.items()]} for comb in combinations]
|
||||
|
||||
|
||||
def _factors_combinations(factors):
|
||||
combinations = []
|
||||
for factor in factors:
|
||||
if not combinations:
|
||||
combinations = factor
|
||||
continue
|
||||
new_combinations = []
|
||||
for comb in combinations:
|
||||
for f in factor:
|
||||
new_comb = comb.copy()
|
||||
new_comb.update(f)
|
||||
new_combinations.append(new_comb)
|
||||
combinations.extend(new_combinations)
|
||||
return combinations
|
||||
@@ -0,0 +1,46 @@
|
||||
# This file was generated by Conan. Remove this comment if you edit this file or Conan
|
||||
# will destroy your changes.
|
||||
|
||||
def profile_plugin(profile):
|
||||
settings = profile.settings
|
||||
if settings.get("compiler") in ("msvc", "clang") and settings.get("compiler.runtime"):
|
||||
if settings.get("compiler.runtime_type") is None:
|
||||
runtime = "Debug" if settings.get("build_type") == "Debug" else "Release"
|
||||
try:
|
||||
settings["compiler.runtime_type"] = runtime
|
||||
except ConanException:
|
||||
pass
|
||||
_check_correct_cppstd(settings)
|
||||
_check_correct_cstd(settings)
|
||||
|
||||
|
||||
def _check_correct_cppstd(settings):
|
||||
cppstd = settings.get("compiler.cppstd")
|
||||
version = settings.get("compiler.version")
|
||||
|
||||
if cppstd and version:
|
||||
compiler = settings.get("compiler")
|
||||
from conan.tools.build.cppstd import supported_cppstd
|
||||
supported = supported_cppstd(None, compiler, version)
|
||||
# supported is None when we don't have information about the compiler
|
||||
# but an empty list when no flags are supported for this version
|
||||
if supported is not None and cppstd not in supported:
|
||||
from conan.errors import ConanException
|
||||
raise ConanException(f"The provided compiler.cppstd={cppstd} is not supported by {compiler} {version}. "
|
||||
f"Supported values are: {supported}")
|
||||
|
||||
|
||||
def _check_correct_cstd(settings):
|
||||
cstd = settings.get("compiler.cstd")
|
||||
version = settings.get("compiler.version")
|
||||
|
||||
if cstd and version:
|
||||
compiler = settings.get("compiler")
|
||||
from conan.tools.build.cstd import supported_cstd
|
||||
supported = supported_cstd(None, compiler, version)
|
||||
# supported is None when we don't have information about the compiler
|
||||
# but an empty list when no flags are supported for this version
|
||||
if supported is not None and cstd not in supported:
|
||||
from conan.errors import ConanException
|
||||
raise ConanException(f"The provided compiler.cstd={cstd} is not supported by {compiler} {version}. "
|
||||
f"Supported values are: {supported}")
|
||||
@@ -0,0 +1,5 @@
|
||||
# Core configuration (type 'conan config list' to list possible values)
|
||||
# e.g, for CI systems, to raise if user input would block
|
||||
# core:non_interactive = True
|
||||
# some tools.xxx config also possible, though generally better in profiles
|
||||
# tools.android:ndk_path = my/path/to/android/ndk
|
||||
@@ -0,0 +1,5 @@
|
||||
import os
|
||||
|
||||
def migrate(home_folder):
|
||||
from conans.client.graph.compatibility import migrate_compatibility_files
|
||||
migrate_compatibility_files(home_folder)
|
||||
@@ -0,0 +1,8 @@
|
||||
[settings]
|
||||
arch=x86_64
|
||||
build_type=Release
|
||||
compiler=msvc
|
||||
compiler.cppstd=14
|
||||
compiler.runtime=dynamic
|
||||
compiler.version=194
|
||||
os=Windows
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"remotes": [
|
||||
{
|
||||
"name": "conancenter",
|
||||
"url": "https://center2.conan.io",
|
||||
"verify_ssl": true
|
||||
},
|
||||
{
|
||||
"name": "inseinc",
|
||||
"url": "https://artifactory.ingg.com/artifactory/api/conan/conan_local_inseinc",
|
||||
"verify_ssl": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,182 @@
|
||||
# This file was generated by Conan. Remove this comment if you edit this file or Conan
|
||||
# will destroy your changes.
|
||||
os:
|
||||
Windows:
|
||||
subsystem: [null, cygwin, msys, msys2, wsl]
|
||||
WindowsStore:
|
||||
version: ["8.1", "10.0"]
|
||||
WindowsCE:
|
||||
platform: [ANY]
|
||||
version: ["5.0", "6.0", "7.0", "8.0"]
|
||||
Linux:
|
||||
iOS:
|
||||
version: &ios_version
|
||||
["7.0", "7.1", "8.0", "8.1", "8.2", "8.3", "8.4", "9.0", "9.1", "9.2", "9.3",
|
||||
"10.0", "10.1", "10.2", "10.3",
|
||||
"11.0", "11.1", "11.2", "11.3", "11.4",
|
||||
"12.0", "12.1", "12.2", "12.3", "12.4", "12.5",
|
||||
"13.0", "13.1", "13.2", "13.3", "13.4", "13.5", "13.6", "13.7",
|
||||
"14.0", "14.1", "14.2", "14.3", "14.4", "14.5", "14.6", "14.7", "14.8",
|
||||
"15.0", "15.1", "15.2", "15.3", "15.4", "15.5", "15.6", "15.7", "15.8",
|
||||
"16.0", "16.1", "16.2", "16.3", "16.4", "16.5", "16.6", "16.7",
|
||||
"17.0", "17.1", "17.2", "17.3", "17.4", "17.5", "17.6", "17.8",
|
||||
"18.0", "18.1", "18.2", "18.3", "18.4", "18.5", "18.6",
|
||||
"26.0"]
|
||||
sdk: ["iphoneos", "iphonesimulator"]
|
||||
sdk_version: [null, "11.3", "11.4", "12.0", "12.1", "12.2", "12.4",
|
||||
"13.0", "13.1", "13.2", "13.3", "13.4", "13.5", "13.6", "13.7",
|
||||
"14.0", "14.1", "14.2", "14.3", "14.4", "14.5", "15.0", "15.2", "15.4",
|
||||
"15.5", "16.0", "16.1", "16.2", "16.4", "17.0", "17.1", "17.2", "17.4", "17.5",
|
||||
"18.0", "18.1", "18.2", "18.4", "18.5",
|
||||
"26.0"]
|
||||
watchOS:
|
||||
version: ["4.0", "4.1", "4.2", "4.3", "5.0", "5.1", "5.2", "5.3", "6.0", "6.1", "6.2", "6.3",
|
||||
"7.0", "7.1", "7.2", "7.3", "7.4", "7.5", "7.6",
|
||||
"8.0", "8.1", "8.3", "8.4", "8.5", "8.6", "8.7",
|
||||
"9.0","9.1", "9.2", "9.3", "9.4", "9.5", "9.6",
|
||||
"10.0", "10.1", "10.2", "10.3", "10.4", "10.5", "10.6",
|
||||
"11.0", "11.1", "11.2", "11.3", "11.4", "11.5", "11.6",
|
||||
"26.0"]
|
||||
sdk: ["watchos", "watchsimulator"]
|
||||
sdk_version: [null, "4.3", "5.0", "5.1", "5.2", "5.3", "6.0", "6.1", "6.2",
|
||||
"7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.0.1", "8.3", "8.5", "9.0", "9.1",
|
||||
"9.4", "10.0", "10.1", "10.2", "10.4", "10.5",
|
||||
"11.0", "11.1", "11.2", "11.4", "11.5",
|
||||
"26.0"]
|
||||
tvOS:
|
||||
version: ["11.0", "11.1", "11.2", "11.3", "11.4",
|
||||
"12.0", "12.1", "12.2", "12.3", "12.4",
|
||||
"13.0", "13.2", "13.3", "13.4",
|
||||
"14.0", "14.2", "14.3", "14.4", "14.5", "14.6", "14.7",
|
||||
"15.0", "15.1", "15.2", "15.3", "15.4", "15.5", "15.6",
|
||||
"16.0", "16.1", "16.2", "16.3", "16.4", "16.5", "16.6",
|
||||
"17.0", "17.1", "17.2", "17.3", "17.4", "17.5", "17.6",
|
||||
"18.0", "18.1", "18.2", "18.3", "18.4", "18.5", "18.6",
|
||||
"26.0"]
|
||||
sdk: ["appletvos", "appletvsimulator"]
|
||||
sdk_version: [null, "11.3", "11.4", "12.0", "12.1", "12.2", "12.4",
|
||||
"13.0", "13.2", "13.3", "13.4", "14.0", "14.2", "14.3", "14.4", "14.5", "15.0",
|
||||
"15.2", "15.4", "15.5", "16.0", "16.1", "16.4", "17.0", "17.1", "17.2", "17.4", "17.5",
|
||||
"18.0", "18.1", "18.2", "18.4", "18.5",
|
||||
"26.0"]
|
||||
visionOS:
|
||||
version: ["1.0", "1.1", "1.2", "1.3", "2.0", "2.1", "2.2", "2.3", "2.4", "2.5", "2.6",
|
||||
"26.0"]
|
||||
sdk: ["xros", "xrsimulator"]
|
||||
sdk_version: [null, "1.0", "1.1", "1.2", "1.3", "2.0", "2.1", "2.2", "2.4", "2.5",
|
||||
"26.0"]
|
||||
Macos:
|
||||
version: [null, "10.6", "10.7", "10.8", "10.9", "10.10", "10.11", "10.12", "10.13", "10.14", "10.15",
|
||||
"11.0", "11.1", "11.2", "11.3", "11.4", "11.5", "11.6", "11.7",
|
||||
"12.0", "12.1", "12.2", "12.3", "12.4", "12.5", "12.6", "12.7",
|
||||
"13.0", "13.1", "13.2", "13.3", "13.4", "13.5", "13.6", "13.7",
|
||||
"14.0", "14.1", "14.2", "14.3", "14.4", "14.5", "14.6", "14.7",
|
||||
"15.0", "15.1", "15.2", "15.3", "15.4", "15.5", "15.6",
|
||||
"26.0"]
|
||||
sdk_version: [null, "10.13", "10.14", "10.15", "11.0", "11.1", "11.2", "11.3", "12.0", "12.1",
|
||||
"12.3", "12.4", "13.0", "13.1", "13.3", "14.0", "14.2", "14.4", "14.5",
|
||||
"15.0", "15.1", "15.2", "15.4", "15.5",
|
||||
"26.0"]
|
||||
subsystem:
|
||||
null:
|
||||
catalyst:
|
||||
ios_version: *ios_version
|
||||
Android:
|
||||
api_level: [ANY]
|
||||
ndk_version: [null, ANY]
|
||||
FreeBSD:
|
||||
SunOS:
|
||||
AIX:
|
||||
Arduino:
|
||||
board: [ANY]
|
||||
Emscripten:
|
||||
Neutrino:
|
||||
version: ["6.4", "6.5", "6.6", "7.0", "7.1"]
|
||||
baremetal:
|
||||
VxWorks:
|
||||
version: ["7"]
|
||||
arch: [x86, x86_64, ppc32be, ppc32, ppc64le, ppc64,
|
||||
armv4, armv4i, armv5el, armv5hf, armv6, armv7, armv7hf, armv7s, armv7k, armv8, armv8_32, armv8.3, arm64ec,
|
||||
sparc, sparcv9,
|
||||
mips, mips64, avr, s390, s390x, asm.js, wasm, wasm64, sh4le,
|
||||
e2k-v2, e2k-v3, e2k-v4, e2k-v5, e2k-v6, e2k-v7,
|
||||
riscv64, riscv32,
|
||||
xtensalx6, xtensalx106, xtensalx7,
|
||||
tc131, tc16, tc161, tc162, tc18]
|
||||
compiler:
|
||||
sun-cc:
|
||||
version: ["5.10", "5.11", "5.12", "5.13", "5.14", "5.15"]
|
||||
threads: [null, posix]
|
||||
libcxx: [libCstd, libstdcxx, libstlport, libstdc++]
|
||||
gcc:
|
||||
version: ["4.1", "4.4", "4.5", "4.6", "4.7", "4.8", "4.9",
|
||||
"5", "5.1", "5.2", "5.3", "5.4", "5.5",
|
||||
"6", "6.1", "6.2", "6.3", "6.4", "6.5",
|
||||
"7", "7.1", "7.2", "7.3", "7.4", "7.5",
|
||||
"8", "8.1", "8.2", "8.3", "8.4", "8.5",
|
||||
"9", "9.1", "9.2", "9.3", "9.4", "9.5",
|
||||
"10", "10.1", "10.2", "10.3", "10.4", "10.5",
|
||||
"11", "11.1", "11.2", "11.3", "11.4", "11.5",
|
||||
"12", "12.1", "12.2", "12.3", "12.4", "12.5",
|
||||
"13", "13.1", "13.2", "13.3", "13.4",
|
||||
"14", "14.1", "14.2", "14.3",
|
||||
"15", "15.1", "15.2"]
|
||||
libcxx: [libstdc++, libstdc++11]
|
||||
threads: [null, posix, win32, mcf] # Windows MinGW
|
||||
exception: [null, dwarf2, sjlj, seh] # Windows MinGW
|
||||
cppstd: [null, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23, 26, gnu26]
|
||||
cstd: [null, 99, gnu99, 11, gnu11, 17, gnu17, 23, gnu23]
|
||||
msvc:
|
||||
version: [170, 180, 190, 191, 192, 193, 194, 195]
|
||||
update: [null, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
||||
runtime: [static, dynamic]
|
||||
runtime_type: [Debug, Release]
|
||||
cppstd: [null, 14, 17, 20, 23]
|
||||
toolset: [null, v110_xp, v120_xp, v140_xp, v141_xp]
|
||||
cstd: [null, 11, 17]
|
||||
clang:
|
||||
version: ["3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "4.0",
|
||||
"5.0", "6.0", "7.0", "7.1",
|
||||
"8", "9", "10", "11", "12", "13", "14", "15", "16", "17",
|
||||
"18", "19", "20", "21"]
|
||||
libcxx: [null, libstdc++, libstdc++11, libc++, c++_shared, c++_static]
|
||||
cppstd: [null, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23, 26, gnu26]
|
||||
runtime: [null, static, dynamic]
|
||||
runtime_type: [null, Debug, Release]
|
||||
runtime_version: [null, v140, v141, v142, v143, v144]
|
||||
cstd: [null, 99, gnu99, 11, gnu11, 17, gnu17, 23, gnu23]
|
||||
apple-clang:
|
||||
version: ["5.0", "5.1", "6.0", "6.1", "7.0", "7.3", "8.0", "8.1", "9.0", "9.1",
|
||||
"10.0", "11.0", "12.0", "13", "13.0", "13.1", "14", "14.0", "15", "15.0",
|
||||
"16", "16.0", "17", "17.0"]
|
||||
libcxx: [libstdc++, libc++]
|
||||
cppstd: [null, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23, 26, gnu26]
|
||||
cstd: [null, 99, gnu99, 11, gnu11, 17, gnu17, 23, gnu23]
|
||||
intel-cc:
|
||||
version: ["2021.1", "2021.2", "2021.3", "2021.4", "2022.1", "2022.2",
|
||||
"2022.3", "2023.0", "2023.1", "2023.2", "2024.0", "2024.1",
|
||||
"2025.0", "2025.1"]
|
||||
update: [null, ANY]
|
||||
mode: ["icx", "classic", "dpcpp"]
|
||||
libcxx: [null, libstdc++, libstdc++11, libc++]
|
||||
cppstd: [null, 98, gnu98, "03", gnu03, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23]
|
||||
runtime: [null, static, dynamic]
|
||||
runtime_type: [null, Debug, Release]
|
||||
qcc:
|
||||
version: ["4.4", "5.4", "8.3"]
|
||||
libcxx: [cxx, gpp, cpp, cpp-ne, accp, acpp-ne, ecpp, ecpp-ne]
|
||||
cppstd: [null, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17]
|
||||
mcst-lcc:
|
||||
version: ["1.19", "1.20", "1.21", "1.22", "1.23", "1.24", "1.25"]
|
||||
libcxx: [libstdc++, libstdc++11]
|
||||
cppstd: [null, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23]
|
||||
emcc:
|
||||
# From https://github.com/emscripten-core/emscripten/blob/main/ChangeLog.md
|
||||
# There is no ABI compatibility guarantee between versions
|
||||
version: [ANY]
|
||||
libcxx: [null, libstdc++, libstdc++11, libc++]
|
||||
threads: [null, posix, wasm_workers]
|
||||
cppstd: [null, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23, 26, gnu26]
|
||||
cstd: [null, 99, gnu99, 11, gnu11, 17, gnu17, 23, gnu23]
|
||||
|
||||
build_type: [null, Debug, Release, RelWithDebInfo, MinSizeRel]
|
||||
@@ -0,0 +1 @@
|
||||
2.21.0
|
||||
Reference in New Issue
Block a user