make command problem


 
Thread Tools Search this Thread
Operating Systems Solaris make command problem
# 8  
Old 03-23-2010
Quote:
Originally Posted by freeware
yes but I executed pkgrm SUNWgmake , because I read that the gnu make was the way to avoid lots of trouble with the source codes that are made to "run" with gnu.
That doesn't make any sense. Why did you remove SUNWgmake which is precisely gnu make that avoids the trouble with non portable makefiles ?
Quote:
Is there a place where I can download this package from?
You installation media (likely DVD). SUNWgmake is part of the Solaris distribution.
Quote:
the gnu make should install in /usr/local/bin, am I right?
Not the one properly packaged by Sun which installs in /usr/sfw/bin.
Quote:
In this case to run this I should execute make -f /usr/local/bin?
No, you should run /usr/sfw/bin/gmake or /usr/local/bin/gmake if you use the Sunfreeware (i.e. non Sun) package.
# 9  
Old 03-24-2010
Quote:
Can you please check /usr/local/lib for files names libsdl.so or libSDL.so or similar?
i did and i found the libSDL.so file and others files all with SDL sequence in uppercase
Quote:
You installation media (likely DVD). SUNWgmake is part of the Solaris distribution.
I found it but it doesn't contain a real package file, so I just copy it back into the sun packages folder on my hard disk , is this the right way?
# 10  
Old 03-24-2010
Quote:
Originally Posted by freeware
I found it but it doesn't contain a real package file, so I just copy it back into the sun packages folder on my hard disk , is this the right way?
No. You install it with the pkgadd command. Packages do exist in two form, a single file (a.k.a. package datastream) and a directory structure which is what you'll find on the DVD.

Code:
pkgadd -d . SUNWgcc

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problem with "make" command in Linux

Hi all, I downloaded an external program and extracted all the files to a folder. they have a make file which I have to run. But when I run make file I get an error g++ -O2 -c pgm.cpp make: g++: Command not found make: *** Error 127 When I checked the list of GCC I get this binf-01... (14 Replies)
Discussion started by: kaav06
14 Replies

2. Solaris

Problem in Make file

Dear all, we are facing a problem solarais 10.5 we are trying to install zip23 when i run this command make -f unix/Makefile system i got this error make: fatal error: Don't know how to make target 'system' please help Thanks (2 Replies)
Discussion started by: Emad Nabil
2 Replies

3. Shell Programming and Scripting

Problem with make

I have the following makefile to create my programs, and getting the following error. Somehow it it trying to get to ./programs/rdt/raytrac.cc rather than ./programs/raytrac.cc It seems to be picking the last path to rdt g++ -traditional -Wno-non-template-friend -Wno-deprecated -O3 -DNDEBUG... (2 Replies)
Discussion started by: kristinu
2 Replies

4. HP-UX

HP-unix make file Problem

Dear Unixians, I have try to link my libraries with tuxedo that showing following errors, ] My make file few lines: .... actual linking regards, kkl (1 Reply)
Discussion started by: kkl
1 Replies

5. Linux

make command problem with MySql install

Hi, hopefully someone can help me. I am trying to set up LAMP on Fedora 11 starting with MySql. I downloaded the mysql-5.1.40.tar.gz tarball and unpacked it all. This created the mysql-5.1.40 directory. Next I ran the ./configure command. Following this I ran the make command to compile but... (2 Replies)
Discussion started by: patcom
2 Replies

6. UNIX for Advanced & Expert Users

problem with make command

hi guys would u clarify me how to use make command , how to write rules of make command and to execute . (1 Reply)
Discussion started by: chinakampalli p
1 Replies

7. UNIX for Dummies Questions & Answers

Problem with make command

hi guys/gals would u help me out on using make command , how to write rules and execute of make command , am using mandriva linux (1 Reply)
Discussion started by: chinakampalli p
1 Replies

8. Solaris

problem to make a crontab -l

Hello everyone, this is the first i write in the forum, hope i can help , but now i have a problem There must be something wrong in my machine. I installed ( years ago ) an application (NEP) and when I try to show the backup scheduled in crontab the systems says i have no privilegies to do... (4 Replies)
Discussion started by: javierg
4 Replies

9. AIX

Problem MAKE cc: not found on AIX 5.3 please help me...

Hi guys, I am trying to install Big Brother monitoring on my box p570 AIX5.3ML2. But the after the installation you must run a make and it is failed see below the message: /home/bb/bb1.9h-btf/src/ # make Making aix makefile BBOS="aix" CC="cc" CFLAGS=" -Daix -DTIMEH -DREGEXEC... (1 Reply)
Discussion started by: touny
1 Replies

10. UNIX for Advanced & Expert Users

solaris 9 openssl make problem with ld

i've seen a few posts regarding this issue, and i've tried the resolutions, but i keep running into the same problem. i'm trying to compile OpenSSL with the use of rsaref-2.0 (i'm running through this tutorial... (1 Reply)
Discussion started by: xyyz
1 Replies
Login or Register to Ask a Question