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

25 lines
425 B
Plaintext
Raw Permalink Normal View History

2024-05-21 12:45:43 +10:00
{% set VERSION = 14 %}
{% set CC = "gcc-$VERSION" %}
{% set CXX = "g++-$VERSION" %}
{% set CXXFLAGS = "-D_GLIBCXX_DEBUG" %}
2020-10-19 08:46:18 +11:00
[settings]
os=Linux
arch=x86_64
compiler=gcc
2024-05-21 12:45:43 +10:00
compiler.version={{ VERSION }}
2020-10-19 08:46:18 +11:00
compiler.libcxx=libstdc++11
build_type=Debug
[options]
[buildenv]
CC=$CC
CXX=$CXX
2024-05-21 12:45:43 +10:00
CXXFLAGS={{ CXXFLAGS }}
[conf]
tools.build:compiler_executables={"c": "gcc-14","cpp": "g++-14"}
tools.build:cxxflags=["-D_GLIBCXX_DEBUG"]