Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
10-05-2004, 06:15 AM
|
#1
|
LQ Newbie
Registered: Oct 2004
Posts: 11
Rep:
|
installing tar.gz files
im trying to install xmms player. so i extracted the files to my desktop, open a terminal window, typed ./configure lots of letters strated coming o_O and at the end of it was a line ˙ņo acceptable cc found˙, what does that mean? after that i typed make and it said ˙make: *** No targets specified and no makefile found. Stop.˙. what do have to do now?
|
|
|
10-05-2004, 06:24 AM
|
#2
|
Senior Member
Registered: Dec 2001
Location: 35.7480° N, 95.3690° W
Distribution: Debian, Gentoo, Red Hat, Solaris
Posts: 2,070
Rep:
|
First, you need to see if you have gcc installed type
whereis gcc
If it was not foung you need to install it.
If it was found, then in your ~/.bashrc file add a line
PATH=$PATH ath_to_gcc
path_to_gcc being the full directory path that contains gcc. Then run
source .bashrc
|
|
|
10-05-2004, 06:25 AM
|
#3
|
Member
Registered: Nov 2003
Location: Ronneby, Sweden
Posts: 555
Rep:
|
You need to have the compiler (gcc) installed. How to install it is depending on your distribution. You should find some sort of "package" (deb, rpm) and install it. In RedHat/Fedora it's in the "Development Tools" section.
Good luck!
Martin
|
|
|
10-05-2004, 06:28 AM
|
#4
|
LQ Newbie
Registered: Oct 2004
Posts: 11
Original Poster
Rep:
|
im using mandrake 9.2
|
|
|
10-05-2004, 06:32 AM
|
#5
|
Member
Registered: Nov 2003
Location: Ronneby, Sweden
Posts: 555
Rep:
|
I'm not a Mandrake user. Isn't there an "Add/Remove packages" (or similar) option somewhere in the system settings menus?
Martin
|
|
|
10-05-2004, 06:35 AM
|
#6
|
LQ Newbie
Registered: Oct 2004
Posts: 11
Original Poster
Rep:
|
yeah thereis. so i just have to install everything with gcc?
|
|
|
10-05-2004, 06:39 AM
|
#7
|
Member
Registered: Nov 2003
Location: Ronneby, Sweden
Posts: 555
Rep:
|
You only need the base gcc package. You don't, for example, need the gcc-g77 package, since that's a Fortran compiler and Fortran is kind of the dinosaur of programming languages.
Martin
|
|
|
10-05-2004, 06:41 AM
|
#8
|
LQ Newbie
Registered: Oct 2004
Posts: 11
Original Poster
Rep:
|
ok i installed everything and it says this:
loading cache ./config.cache checking host system type... i686-pc-linux-gnu checking for a BSD compatible install... /usr//bin/install -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... missing checking for working autoconf... missing checking for working automake... missing checking for working autoheader... missing checking for working makeinfo... found checking for prefix by checking for xmms... no checking for gcc... gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking for strerror in -lcposix... no checking whether byte ordering is bigendian... no checking for inline... inline checking for working const... yes checking for a BSD compatible install... /usr//bin/install -c checking whether ln -s works... yes checking whether make sets ${MAKE}... (cached) yes checking for Cygwin environment... no checking for mingw32 environment... no checking how to run the C preprocessor... gcc -E checking build system type... i686-pc-linux-gnu checking for ld used by GCC... /usr//bin/ld checking if the linker (/usr//bin/ld) is GNU ld... yes checking for /usr//bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr//bin/nm -B checking how to recognise dependant libraries... pass_all checking for object suffix... o checking for executable suffix... no checking command to parse /usr//bin/nm -B output... ok checking for dlfcn.h... yes checking for ranlib... ranlib checking for strip... strip checking for objdir... .libs checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.lo... yes checking if gcc supports -fno-rtti -fno-exceptions... yes checking whether the linker (/usr//bin/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... GNU/Linux ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking whether -lc should be explicitly linked in... no creating libtool checking for pthread.h... yes checking for glib-config... no checking for GLIB - version >= 1.2.2... no *** The glib-config script installed by GLIB could not be found *** If GLIB was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GLIB_CONFIG environment variable to the *** full path to glib-config. configure: error: *** GLIB >= 1.2.2 not installed - please install first ***
thats then i type ./configure
i installed glib but nothing changed
Last edited by rubbertiki; 10-05-2004 at 07:11 AM.
|
|
|
10-05-2004, 07:41 AM
|
#9
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,418
|
Last msg was:
GLIB >= 1.2.2 not installed - please install first ***
You need to find the GLIB pkg and install it.
|
|
|
10-05-2004, 09:35 PM
|
#10
|
Senior Member
Registered: Dec 2001
Location: 35.7480° N, 95.3690° W
Distribution: Debian, Gentoo, Red Hat, Solaris
Posts: 2,070
Rep:
|
Install the glib-dev package.
|
|
|
All times are GMT -5. The time now is 08:19 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|