gmake on Mac


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers gmake on Mac
# 8  
Old 10-29-2011
You don't have make installed.
Code:
[bash-4.2.10] tmp $ ls -lF /usr/bin/*make*
-rwxr-xr-x  2 root  wheel  232943 May 18  2009 /usr/bin/automake*
-rwxr-xr-x  2 root  wheel  232943 May 18  2009 /usr/bin/automake-1.10*
-r-xr-xr-x  1 root  wheel  248784 Oct 24  2010 /usr/bin/bsdmake*
-rwxr-xr-x  1 root  wheel  349920 Oct 24  2010 /usr/bin/gnumake*
lrwxr-xr-x  1 root  wheel       7 Oct 31  2009 /usr/bin/make@ -> gnumake
-rwxr-xr-x  1 root  wheel  499136 May 18  2009 /usr/bin/makeinfo*

Actually, gnumake.
# 9  
Old 10-31-2011
It sounds like xbin is correct, can you post the results of his command?
Code:
ls -lF /usr/bin/*make*

When you installed XCode, did you change any of the default package selections? If you changed them, did you install the UNIX tools (how this is worded depends on the XCode/OSX version)?
# 10  
Old 11-01-2011
Quote:
Originally Posted by kalak
It sounds like xbin is correct, can you post the results of his command?
Code:
ls -lF /usr/bin/*make*

When you installed XCode, did you change any of the default package selections? If you changed them, did you install the UNIX tools (how this is worded depends on the XCode/OSX version)?
Code:
$ ls -lF /usr/bin/*make*
lrwxr-xr-x  1 root  wheel      49 Oct 27 04:06 /usr/bin/ccmake@ -> /Applications/CMake 2.8-6.app/Contents/bin/ccmake
lrwxr-xr-x  1 root  wheel      48 Oct 27 04:06 /usr/bin/cmake@ -> /Applications/CMake 2.8-6.app/Contents/bin/cmake
lrwxr-xr-x  1 root  wheel      52 Oct 27 04:06 /usr/bin/cmake-gui@ -> /Applications/CMake 2.8-6.app/Contents/bin/cmake-gui
lrwxr-xr-x  1 root  wheel      54 Oct 27 04:06 /usr/bin/cmakexbuild@ -> /Applications/CMake 2.8-6.app/Contents/bin/cmakexbuild
lrwxr-xr-x  1 root  wheel      13 Oct 29 03:48 /usr/bin/gmake@ -> /usr/bin/make
-rwxr-xr-x  1 root  wheel  499136 Jan 26  2010 /usr/bin/makeinfo*


No, I didn't change any of the default options when I installed it.
# 11  
Old 11-01-2011
Your response tells me that you installed CMake from an OSX package, but do not have make or gmake installed. (your gmake link points to /usr/bin/make which does not exist, so neither make or gmake appear to be installed on your system from XCode)

gmake is installed on OSX as a part of the Develper Tools from Apple known as XCode. OSX w/o XCode is rather difficult to get any UNIX based stuff working. XCode used to be included with the OS, but that was many kittens ago. Register as an Apple Developer, Download Xcode and install XCode for your OS version (XCode for Lion is on the App Store).

Once you've installed XCode, you can then start poking under the hood with a project like MacPorts, where can install cmake and other unix utilities you're looking into. (gmake is included in XCode, cmake )

My order of software installs as a UNIX geek are OSX, XCode, patch, then macports. Then I can install OSX things like BBEdit, VMWare, etc.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Gmake

hi with regard that i am new with linux , i don't have any information about GNU make? is it a part of linux or it must be installed in linux separately? thanks in advance for you attention best regard fereshte (1 Reply)
Discussion started by: komijani
1 Replies

2. Solaris

Make and gmake issues

Hello I am working on a CPP code written for SUN CC 5.5 and make we used make to compile the code then it compilation went smooth now i am using gmake: I have a make file like this WSROOT=.. include $(WSROOT)/etc/wsmkinclude.common all: @for subdir in */Makefile; \ do \... (1 Reply)
Discussion started by: Revathi R
1 Replies

3. Programming

Make and gmake issues

Hello I am working on a CPP code written for SUN CC 5.5 and make we used make to compile the code then it compilation went smooth now i am using gmake: I have a make file like this WSROOT=.. include $(WSROOT)/etc/wsmkinclude.common all: @for subdir in */Makefile; \ do \... (1 Reply)
Discussion started by: Revathi R
1 Replies

4. Programming

GMAKE error returns - What does that mean ?

I am using xmake which I guess calls gmake which ... whatever. I get an error in my compiling and want to know what the error number means. For example, the message might be "Error 139". Rather then post the exact code fragment and exact output, I want to find the a list of error codes and... (1 Reply)
Discussion started by: intcwrtr
1 Replies

5. Programming

after gmake size of library gets changes

Hello, I have source code of c. When i compiled it using gmake my library gets created on AIX. But without changing the source code, if i try to do gmake each and every time then every time size of created library gets changed. Can anyone tell me why it's happening? Am i missing something in my... (3 Replies)
Discussion started by: mustus
3 Replies

6. Programming

what is the distinguish between gmake and make?

I am working on solaris 9. and use gmake to compile and linke c/c++ program. anybody can tell me the distinguish between gmake and make? :confused: (10 Replies)
Discussion started by: robin.zhu
10 Replies

7. UNIX for Advanced & Expert Users

CPAM_TWW -gmake utilities

Hi CPAM-TWW, We need to know Whether CPAM-TWW ( cross platform application Management) package comes along With HP-UX11i . if so , Please get Which package needs to be triggered during installation ( We are more intrested on TWWgmake and TWWutilites( 3rd party software The Written Word)) ... (0 Replies)
Discussion started by: vasanthan
0 Replies

8. AIX

gmake For AIX 5.3

hello everybody i will be very thankful if someone tells me where i can find the gmake for AIX 5.3 (2 Replies)
Discussion started by: eternalflame
2 Replies

9. UNIX for Dummies Questions & Answers

gmake

Can somebody tell me about "gmake "utility and its apparent advantage with "Imake" and "Make".??? can somebody send me the URLs where I can get more material on above topics? (1 Reply)
Discussion started by: Abhishek
1 Replies
Login or Register to Ask a Question