競プロのための環境構築がうまくいきません
解決したいこと
競プロに興味を持ち環境構築を始めたのですが、#include <bits/stdc++から永遠に赤線が取れません。
様々なサイトを参考にしたのですが、どのサイトも少しずつ違うことが書かれておいり、何が原因かもはっきりしません。
発生している問題・エラー
main.cpp
#include <bits/stdc++.h>
//ここにずっと赤い波線がで続けています
using namespace std;
int main(){
int N;
cin >> N;
vector<int> A(N);
for (int i = 0; i < N; i++) cin >> A[i];
for (int i = 0; i < N - 1; i++) cout << A[i] * A[i + 1] << " ";
}
現在の状況
ディレクトリ
□ root
└□ Users
└□ {username}
└□ cp
├□ .vscode
│├○ c_cpp_properties.json
│├○ launch.json
│├○ settings.json
│└○ tasks.json
├□ atcoder
│├○ all
│├○ convolution
│:
│├○ twosat
│└○ twosat.hpp
├○ expander.py
├○ main.cpp
└○ main.py
各jsonファイル
c_cpp_properties.json
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/atcoder",
"/usr/local/include/**",
"/usr/local/include/bits"
],
"defines": [],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/local/bin/g++-13",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-gcc-x64"
}
],
"version": 4
}
launch.json
{
"configurations": [
{
"name": "C/C++: g++-13 build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": true,
"MIMode": "lldb",
"preLaunchTask": "C/C++: g++-13 build active file"
}
],
"version": "2.0.0"
}
settings.json
//本当に何も書いてないです。
{
}
tasks.json
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++-13 build active file",
"command": "/usr/local/bin/g++-13",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"-I",
"."
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "Task generated by Debugger."
},
{
"type": "cppbuild",
"label": "C/C++: g++-13 アクティブなファイルのビルド",
"command": "/usr/local/bin/g++-13",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"-I",
"."
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "デバッガーによって生成されたタスク。"
}
],
"version": "2.0.0"
}
自分で試したこと
homebrewのインストール
homebrewは見当たらないが、brew install gccは機能する状況
gccのインストール
上記の通りbrew install gccでgcc-13、g++-13を/usr/local/binへ入れることはできた。
which g++-13
/usr/local/bin/g++-13
which gcc-13
/usr/local/bin/gcc-13
シンボリックリンク
実行したコマンド
ls -s /usr/local/bin/gcc-13 /usr/local/bin/gcc
いまだにgccとgccのふりをしたClangの見分け方がわからないがおそらくうまくいっていない。現在gccと実行すると下のようになる。
/usr/local/bin/gcc-13
gcc-13: fatal error: no input files
compilation terminated.
gcc
gcc: fatal error: no input files
compilation terminated.
情報の過不足等流かと思いますがよろしくお願いします