1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

macOS Catalinaでコマンドライン・デベロッパツールをインストールする

Last updated at Posted at 2020-08-19

OS : macOS Catalina(バージョン10.15.6)
目的 : GNU makeを使いたい
手段 : コマンドライン・デベロッパツールをインストールする
Xcode : 未インストール(Xcodeにコマンドライン・デベロッパツールが含まれているそうです)
手順 :

1.ターミナルを起動します。

2.以下コマンドを実行します。

make --version

すると、標準出力か標準エラー出力に、以下が出力されます。

xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools.

3.コマンドライン・デベロッパツールのインストールのダイアログが出るので、指示に従ってインストールします。

4.手順2.のコマンドを再実行して、インストール確認を行います。

make --version
GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for i386-apple-darwin11.3.0

インストールされたGNU makeのバージョンは3.81でした。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?