前提・実現したいこと
VS codeでDockerにてC++の環境構築をしたい。
下記リンクを参考に環境構築を実施。
https://qiita.com/cubinglover/items/5b4d05ca0f77c60f1d79
VScodeのコマンドパレットでC/Cpp: Edit configurations (JSON)がでてこない。
よってC++の環境でコマンド実行してもエラーがでます。
Docker version 20.10.7, build f0df350
Homebrew 3.2.0
Homebrew/homebrew-core (git revision 0d1260c4c5; last commit 2021-07-02)
Homebrew/homebrew-cask (git revision f2ce12c029; last commit 2021-07-02)
VScodeで拡張機能である
c/c++とcode runnerはインストール済み
Dockerfile
1FROM ubuntu:latest 2MAINTAINER username 3WORKDIR /home/projects 4 5RUN apt-get update && apt-get install -y \ 6 vim \ 7 gcc \ 8 g++ \
int main() { int a[5] = { 1, 2, 3, 4, 5 }; int sum = 0, sub = 0; for (int i = 0; i < 5; i++) { sum += sub ? -a[i] : a[i]; sub = 1 - sub; } std::cout << sum << '\n'; }
エラーメッセージ [Running] cd "/workspaces/C++_data/" && g++ int main(void).cpp -o int main(void) && "/workspaces/C++_data/"int main(void) /bin/sh: 1: Syntax error: "(" unexpected [Done] exited with code=2 in 0.01 seconds
環境構築
iterm2
1(base) 440h@44noMacBook-Air(arm64) ~ % ln -s /opt/homebrew/bin/g++-11 /usr/local/bin/g++ 2ln: /usr/local/bin/g++: File exists 3(base) 440h@44noMacBook-Air(arm64) ~ % ln -s /opt/homebrew/bin/gcc-11 /usr/local/bin/gcc 4ln: /usr/local/bin/gcc: File exists
参考
iterm2
1(base) 440h@44noMacBook-Air(arm64) ~ % which gcc 2/usr/bin/gcc 3(base) 440h@44noMacBook-Air(arm64) ~ % which g++-11 4/opt/homebrew/bin/g++-11
あなたの回答
tips
プレビュー