Sponsored Content
Operating Systems Linux Red Hat Trouble installing vsftpd builddegs.h compile error Post 302938546 by fpmurphy on Tuesday 17th of March 2015 11:01:40 AM
Old 03-17-2015
I do not believe that (old) version of GCC supports the stack protection option. Just delete those compiler options.
 

9 More Discussions You Might Find Interesting

1. Solaris

Trouble Installing a SCSI Adapter

Okay. I admit I'm sort of a newbie in this regard. I installed a SCSI adapter on a Sun Ultra 5 workstation. I did the standard STOP-A on the startup and got the OK prompt. I then tried probe-scsi-all. It dumps me back @ the OK prompt w/ no message whatsoever. I tried probe-scsi, nothing. ... (3 Replies)
Discussion started by: Plain Person
3 Replies

2. Solaris

Trouble installing solaris 9 on 4500

I have a enterprise 4500 sun box. I installed 2 new 72 gb drives to replace the 2 x 9 gb drives that were in it. I have the solaris 9 install disk in it and when i do a boot cdrom it starts then says: panic - boot: ufsboot: cannot determine filesystem type of root device. Any suggestions. (1 Reply)
Discussion started by: frankkahle
1 Replies

3. Solaris

Trouble installing Fast CGI

I'm having trouble installing mod_fastcgi.so, that is I'm having trouble compiling it for a start. it seems every time i use the apxs command I get these errors; gcc: unrecognized option `-Xa' gcc: unrecognized option `-Xa' gcc: unrecognized option `-KPIC' gcc: language ildoff not recognized... (0 Replies)
Discussion started by: fishman2001
0 Replies

4. Filesystems, Disks and Memory

Trouble Installing

I'm trying to install SuSE 7.2 Professional on a IBM Netfinity M10 system. But setup says it can not find a HDD for some reason. It has 6 SCSI HDD installed so I'm not sure why it won't detect them. I am new to servers though and never have used a SCSI device. So if someone could help me out I... (2 Replies)
Discussion started by: Iconfixit
2 Replies

5. HP-UX

Trouble installing software with swinst

Hello. I am having issues with my HP-UX 10.20 system. It was a functioning system and I don't know where it went awry. Whenever I attempt to use the swinstall or swlist commands, the system hangs and never comes back. This happens whether I use the CDE GUI or via the SIO console. I sometimes... (1 Reply)
Discussion started by: gtraff68
1 Replies

6. UNIX for Dummies Questions & Answers

Trouble installing Arachne - possible gcc error? Maybe?

Hi, I am having trouble installing Arachne from the broad institute. I'm using ubuntu through Oracle's VirtualBox. When I use the ./configure command, I do not get any obvious errors. However, the make command always fails. Here is my output for the .configure command and for the make... (3 Replies)
Discussion started by: kblanch
3 Replies

7. Red Hat

Error throwing while installing vsftpd package in rhel 6. using rhel 6 dvd.

Hi all, Im studying rhcsa as of now, so yum installation and dependencies are messing me to not workit out. i have dual os, win 7 & rhel 6. i have tried this installation of vsftpd package with rhel 6 dvd in VM rhel 6 in win 7 as well as host rhel 6.still the same issue. below error... (6 Replies)
Discussion started by: redhatlbug
6 Replies

8. UNIX for Dummies Questions & Answers

Vsftpd not installing

$ rpm -ivh vsftpd-2.2.2-6.el6.i686.rpm warning: vsftpd-2.2.2-6.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY error: can't create transaction lock on /var/lib/rpm/.rpm.lock (Permission denied) why is it actually happening am goin nuts plzz help me out :( (1 Reply)
Discussion started by: lost101
1 Replies

9. Linux

On Zorin - trouble installing new printer - need help

Hi. I am new to Linux & am using Zorin on my computer. :confused: I had my old printer pack it in & so I had to replace it with my new printer - which is the same make & model as the old one (a newer model only). There is some code name under Printers which I presume to be the old printer. ... (1 Reply)
Discussion started by: snookerdoodles
1 Replies
C89(1)							    BSD General Commands Manual 						    C89(1)

NAME
c89 -- standard C language compiler SYNOPSIS
c89 [-cEgs] [-D name[=value]] ... [-I directory ...] [-L directory ...] [-o outfile] [-O optlevel] [-U name ...] operand ... DESCRIPTION
This is the name of the C language compiler as required by the IEEE Std 1003.1-2001 (``POSIX.1'') standard. The c89 compiler accepts the following options: -c Suppress the link-edit phase of the compilation, and do not remove any object files that are produced. -D name[=value] Define name as if by a C-language #define directive. If no ``=value'' is given, a value of 1 will be used. Note that in order to request a translation as specified by IEEE Std 1003.1-2001 (``POSIX.1''), you need to define _POSIX_C_SOURCE=200112L either in the source or using this option. The -D option has lower precedence than the -U option. That is, if name is used in both a -U and a -D option, name will be undefined regardless of the order of the options. The -D option may be specified more than once. -E Copy C-language source files to the standard output, expanding all preprocessor directives; no compilation will be performed. -g Produce symbolic information in the object or executable files. -I directory Change the algorithm for searching for headers whose names are not absolute pathnames to look in the directory named by the directory pathname before looking in the usual places. Thus, headers whose names are enclosed in double-quotes ("") will be searched for first in the directory of the file with the #include line, then in directories named in -I options, and last in the usual places. For headers whose names are enclosed in angle brackets (<>), the header will be searched for only in directories named in -I options and then in the usual places. Directories named in -I options shall be searched in the order specified. The -I option may be specified more than once. -L directory Change the algorithm of searching for the libraries named in the -l objects to look in the directory named by the directory pathname before looking in the usual places. Directories named in -L options will be searched in the order specified. The -L option may be specified more than once. -o outfile Use the pathname outfile, instead of the default a.out, for the executable file produced. -O optlevel If optlevel is zero, disable all optimizations. Otherwise, enable optimizations at the specified level. -s Produce object and/or executable files from which symbolic and other information not required for proper execution has been removed (stripped). -U name Remove any initial definition of name. The -U option may be specified more than once. An operand is either in the form of a pathname or the form -l library. At least one operand of the pathname form needs to be specified. Supported operands are of the form: file.c A C-language source file to be compiled and optionally linked. The operand must be of this form if the -c option is used. file.a A library of object files, as produced by ar(1), passed directly to the link editor. file.o An object file produced by c89 -c, and passed directly to the link editor. -l library Search the library named liblibrary.a. A library will be searched when its name is encountered, so the placement of a -l operand is significant. SEE ALSO
ar(1), c89(1), cc(1) STANDARDS
The c89 utility interface conforms to IEEE Std 1003.1-2001 (``POSIX.1''). Since it is a wrapper around GCC, it is limited to the C89 fea- tures that GCC actually implements. BSD
October 7, 2002 BSD
All times are GMT -4. The time now is 02:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy