화살표 버튼을 클릭하면:
다음과 같은 옵션이 제공됩니다.
옵션을 찾고 있어요 C/C++: gcc build and debug active file
. 새로 설치된 manjaro와 vscode입니다. VSCode는 스냅을 통해 설치되며 클래식 버전이 설치됩니다.
이것은 다음의 출력입니다 gcc --version
.
gcc(GCC) 12.2.1 20230201 Copyright (C) 2022 Free Software Foundation, Inc. 이것은 무료 소프트웨어입니다. 복사 조건은 소스를 참조하세요. 특정 목적에 대한 상품성이나 적합성에 대한 보증도 없습니다.
출력 snap info --verbose code
:
summary: Code editing. Redefined.
health:
status: unknown
message: health has not been set
publisher: Visual Studio Code (vscode✓)
store-url: https://snapcraft.io/code
contact: https://twitter.com/code
links:
contact:
- https://twitter.com/code
website:
- https://code.visualstudio.com/
license: unset
description: |
Visual Studio Code is a new choice of tool that combines the
simplicity of a code editor with what developers need for the core
edit-build-debug cycle.
commands:
- code
- code.url-handler
notes:
private: false
confinement: classic
devmode: false
jailmode: false
trymode: false
enabled: true
broken: false
ignore-validation: false
snap-id: Ht0aUHi7ofh9Fbwh6m7jUN2pAy6kzBiu
tracking: latest/stable
refresh-date: today at 10:49 CET
channels:
latest/stable: 5e805b79 2023-03-09 (121) 250MB classic
latest/candidate: ↑
latest/beta: ↑
latest/edge: ↑
installed: 5e805b79 (121) 250MB classic
내 c_cpp_properties.json 파일:
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c99",
"cppStandard": "c++14",
"intelliSenseMode": "linux-gcc-x86",
"compilerArgs": [
"-Wall"
]
}
],
"version": 4
}