SunQuest
           UNIX Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOperating SystemsUNIX Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
1200+ fellow developers rate and compare features of the top IDEs, like Visual Studio, Eclipse, RAD, Delphi and others, across 13 categories. Enjoy this FREE Download of the IDE User Satisfaction Study by Evans Data Corporation. Download Now!
  #1  
Old March 17th, 2003, 05:30 PM
Dirt_Diga Dirt_Diga is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Posts: 4 Dirt_Diga User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
gcc and GNU make

OS: Solaris 8

Trying to install PHP and MySQL

I am told that I need the following tools installed on my system.

Perl (preferably the newest version)
gzip or gunzip
gcc and GNU make

I know that Perl is installed and I know that gunzip is installed.

Now how do I find out if I have gcc and GNU make installed??

If I don't, what are the steps I need to take to get them installed?

Reply With Quote
  #2  
Old March 17th, 2003, 11:56 PM
mttatkns mttatkns is offline
Got source?
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Mar 2003
Location: Laguna Niguel, California, USA
Posts: 2,332 mttatkns User rank is Private First Class (20 - 50 Reputation Level)mttatkns User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
GCC
GNU I use Linux, which is a variant of GNU, so I'm not sure how to check to see if you have it. Good luck!

Last edited by mttatkns : March 18th, 2003 at 12:00 AM.

Reply With Quote
  #3  
Old March 18th, 2003, 08:36 AM
Strike Strike is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2001
Location: Houston, TX
Posts: 383 Strike User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 41 m 27 sec
Reputation Power: 7
Send a message via ICQ to Strike Send a message via AIM to Strike Send a message via Yahoo to Strike
Type "gcc", see if it works

And "make --version" to see if you have GNU make (if the "make" you have isn't GNU make, try "gmake"):

Code:
[ddipaolo@quinn ~]% make --version
GNU Make 3.80
Copyright (C) 2002  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.
[ddipaolo@quinn ~]%
__________________
Debian - because life's too short for worrying.
Best. (Python.) IRC bot. ever.

Reply With Quote
  #4  
Old March 18th, 2003, 01:54 PM
Dirt_Diga Dirt_Diga is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Posts: 4 Dirt_Diga User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
gcc: not found
make: not found
gmake: not found

I'll have to download them.

Reply With Quote
  #5  
Old March 18th, 2003, 02:25 PM
Dirt_Diga Dirt_Diga is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Posts: 4 Dirt_Diga User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
What is the esiest way to download and install these programs?

Can anyone help me? Please.

Reply With Quote
  #6  
Old March 18th, 2003, 03:12 PM
Strike Strike is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2001
Location: Houston, TX
Posts: 383 Strike User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 41 m 27 sec
Reputation Power: 7
Send a message via ICQ to Strike Send a message via AIM to Strike Send a message via Yahoo to Strike
Quote:
Originally posted by Dirt_Diga
What is the esiest way to download and install these programs?

Can anyone help me? Please.

Um, look a few posts up.

Reply With Quote
  #7  
Old March 18th, 2003, 10:14 PM
mttatkns mttatkns is offline
Got source?
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Mar 2003
Location: Laguna Niguel, California, USA
Posts: 2,332 mttatkns User rank is Private First Class (20 - 50 Reputation Level)mttatkns User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8

Reply With Quote
  #8  
Old March 20th, 2003, 09:26 AM
Dirt_Diga Dirt_Diga is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Posts: 4 Dirt_Diga User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Configuration instructions have me confused

This is my first time doing anything like this...configuring and building a GNU software. I'd really appreciate if someone could help me out with this.

After downloading the file 'gcc-3.2.2.tar.gz', these are the steps I have completed so far:
  1. gunzip gcc-3.2.2.tar.gz
  2. tar xvf gcc-3.2.2.tar
  3. cd gcc-3.2.2.


Now I am reading the configuration instructions URL but I am just not getting it.

Quote:
This document describes the recommended configuration procedure for both native and cross targets.

What is meant by native and cross targets?

Quote:
We use srcdir to refer to the toplevel source directory for GCC; we use objdir to refer to the toplevel build/object directory.

What do they mean by toplevel source directory and toplevel build/object directory?

Quote:
If you obtained the sources via CVS, srcdir must refer to the top gcc directory, the one where the MAINTAINERS can be found, and not its gcc subdirectory, otherwise the build will fail.

What is CVS?

Reply With Quote
  #9  
Old March 20th, 2003, 07:01 PM
mttatkns mttatkns is offline
Got source?
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Mar 2003
Location: Laguna Niguel, California, USA
Posts: 2,332 mttatkns User rank is Private First Class (20 - 50 Reputation Level)mttatkns User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
http://www.cvshome.org/
whenever you find a term you don't understand/havent heard of, just try searching google for it, and most times, you'll get what you're looking for near the top

Reply With Quote
  #10  
Old July 17th, 2003, 04:17 AM
carthik carthik is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: India
Posts: 5 carthik User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Quote:
Originally posted by Dirt_Diga
What is the esiest way to download and install these programs?

Can anyone help me? Please.



Visit this site, U will find GCC installable for Solaris.

http://www.ibiblio.org/pub/packages/solaris/sparc/

Just download & install this package. No need to compile and build the GCC compiler.

Cheers
Karthik

Reply With Quote
Reply

Viewing: Dev Shed ForumsOperating SystemsUNIX Help > gcc and GNU make


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway