соответствующих файлов:
.
├── bin
├── src
├── conanfile.py
└── gcc-9.3.0-linux-x86-debug.profile
При попытке выполнить следующую команду из папки bin появляется сообщение об ошибке, что имя и поле версии не найдены в профиле. $ conan install .. --profile ../gcc-9.3.0-linux-x86-debug.profile
ERROR: Error reading '../gcc-9.3.0-linux-x86-debug.profile' profile: Specify the 'name' and the 'version'
Но если я правильно понимаю, версия и имя должны быть определены в файле conanfile.py. Где я могу определить отсутствующее имя и номер версии для команды установки?
Соответствующий профиль conan
[build_requires]
cmake
ninja
gcc/9.3.0
g++/9.3.0
xorriso
qemu
[settings]
os=Linux
os_build=Linux
arch=x86
arch_build=x86
compiler=gcc
compiler.version=9.3.0
cppstd=17
build_type=Debug
[options]
[env]
CC=/usr/bin/gcc-9.3.0
CXX=/usr/bin/g++-9.3.0
CFLAGS=-g
CXXFLAGS=-g