C++初心者がMacでC++の開発環境を用意してコンパイルして実行する
C++を利用する機会ができたので、とりあえずMacで環境作ってみました。
IDE
普段から利用しているVisual Studio Codeを利用することにしました。
環境構築は下記を参考にさせてもらいました。
Visual Studio Code Mac 開発環境構築[C++] | 三十路エンジニア Blog
http://westhillworker.com/visualstudiocode-cpp/
拡張機能から以下をインストールしてIDEを再読込。
- Code Runner
- C/C++
適当なフォルダをVSCodeで開いて、C++のファイルを作成。
#include <iostream>
int main()
{
std::cout << "Hello! World!" << std::endl;
return 0;
}
VSCodeの右上の実行ボタンをクリックすると以下の用にコンパイル&実行されました!
[Running] cd "/任意のディレクトリ/" && g++ main.cpp -o main && "/任意のディレクトリ/"main
Hello! World!
g++
ってので、コンパイルしているようですが、私の環境だとMacOSに最初から入ってる?コンパイラみたいです。
> g++ -v
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.10.44.4)
Target: x86_64-apple-darwin17.7.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
> gcc -v
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.10.44.4)
Target: x86_64-apple-darwin17.7.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
まとめ
C++のことはまだ良くわかっていませんが、とりあえずいろいろとお試しできる環境ができました。
参考
Visual Studio Code Mac 開発環境構築[C++] | 三十路エンジニア Blog
http://westhillworker.com/visualstudiocode-cpp/
cout - cpprefjp C++日本語リファレンス
https://cpprefjp.github.io/reference/iostream/cout.html
標準出力に書き込む | 株式会社きじねこ
http://www.kijineko.co.jp/tech/cppsamples/stdout.html
Author And Source
この問題について(C++初心者がMacでC++の開発環境を用意してコンパイルして実行する), 我々は、より多くの情報をここで見つけました https://qiita.com/kai_kou/items/e8c31d2c8bc4e3b52875著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .