build/conan/profile/x86_64-gcc-linux-debug

25 lines
425 B
Plaintext

{% set VERSION = 14 %}
{% set CC = "gcc-$VERSION" %}
{% set CXX = "g++-$VERSION" %}
{% set CXXFLAGS = "-D_GLIBCXX_DEBUG" %}
[settings]
os=Linux
arch=x86_64
compiler=gcc
compiler.version={{ VERSION }}
compiler.libcxx=libstdc++11
build_type=Debug
[options]
[buildenv]
CC=$CC
CXX=$CXX
CXXFLAGS={{ CXXFLAGS }}
[conf]
tools.build:compiler_executables={"c": "gcc-14","cpp": "g++-14"}
tools.build:cxxflags=["-D_GLIBCXX_DEBUG"]