Skip to content

Latest commit

 

History

History
75 lines (57 loc) · 2.51 KB

supported_platforms_and_configurations.md

File metadata and controls

75 lines (57 loc) · 2.51 KB

Supported platforms and configurations

Contents

Introduction

The pipeline iterates a fixed list of profiles for every Conan reference, it computes the packageID for each profile and discard duplicates. Then it builds the packages for the remaining profiles and upload them to JFrog ConanCenter once the pull-request is merged.

Because duplicated packageIDs are discarded, the pipeline iterates the profiles always in the same order and the profiles selected to build when there is a duplicate follow some rules:

  • Static linkage (option shared=False) is preferred over dynamic linking.
  • On Windows, MT/MTd runtime linkage goes before MD/MDd linkage.
  • Optimized binaries (build_type=Release) are preferred over its debug counterpart.
  • Older compiler versions are considered first.
  • In Linux, GCC is iterated before Clang.

Currently, given the following supported platforms and configurations we are generating 136 different binary packages for a C++ library and 88 for a C library.

Build Images

For more information see conan-io/conan-docker-tools

Windows

  • Compilers: Visual Studio:

    • 2017 (19.16.27045)
    • 2019 (19.29.30139)
  • Release (MT/MD) and Debug (MTd, MDd)

  • Architectures: x86_64

  • Build types: Release, Debug

  • Runtimes: MT/MD (Release), MTd/MDd (Debug)

  • Options:

    • Shared, Static (option "shared": [True, False] in the recipe when available)
    • Header Only (option "header_only": [True, False] is only added with the value True)

Linux

  • Compilers:
    • GCC versions: 5, 7, 8, 9, 10, 11
    • Clang versions: 11, 12, 13
  • C++ Standard Library (libcxx):
    • GCC compiler: libstdc++, libstdc++11
    • Clang compiler: libstdc++, libc++
  • Architectures: x86_64
  • Build types: Release, Debug
  • Options:
    • Shared, Static (option "shared": [True, False] in the recipe when available)
    • Header Only (option "header_only": [True, False] is only added with the value True)

MacOS

  • Compilers: Apple-clang versions 11.0.0, 12.0.0, 12.0.0, 13.0.0
  • C++ Standard Library (libcxx): libc++
  • Architectures: x86_64, armv8
  • Build types: Release, Debug
  • Options:
    • Shared, Static (option "shared": [True, False] in the recipe when available)
    • Header Only (option "header_only": [True, False] is only added with the value True)