Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install make and gcc on a mac?

I want to install Eclim on my macbook air (2011 version). But there are some problems I faced during the installation. It told me that I did not install make and gcc.

I tried to find the solution for it but all solutions are talking about using XCode. In fact, I installed the XCode. But I still cannot install Eclim because there are no make and gcc installed.

How can I install them so that I can install Eclim?

like image 953
code4j Avatar asked Apr 22 '12 06:04

code4j


People also ask

How do I run a Makefile on a Mac?

On Linux and Mac OS systems: To use a makefile to compile your input files, make sure that /usr/bin and /usr/local/bin are in your path. where -f is the make command option to specify a particular makefile. A particular makefile.

Where is gcc installed on Mac?

The gcc application will be installed by default in /usr/local/bin.


1 Answers

Update for newer versions:

The command line versions can now be installed straight from the command line itself;

  • Open "Terminal" (it is located in Applications/Utilities)
  • In the terminal window, run the command xcode-select --install
  • In the windows that pops up, click Install, and agree to the Terms of Service.

Once the installation is complete, the command line utilities should be set up property.


Older versions:

Installing recent XCode versions confusingly enough does not automatically install the command line tools. To install the command line tools when they're not automatically installed;

  • Start XCode.
  • Go to XCode/Preferences.
  • Click the "Downloads" tab.
  • Click "Components".
  • Click "Install" on the command line tools line.

That will install the command line tools and make them accessible from a regular command line.

like image 112
Joachim Isaksson Avatar answered Sep 28 '22 16:09

Joachim Isaksson