Sponsored Content
Top Forums UNIX for Advanced & Expert Users Difficulty building gcc 4.4.0 -- builds but fails abi_check Post 302331932 by otheus on Tuesday 7th of July 2009 02:34:50 PM
Old 07-07-2009
Quote:
I was interested in finding if the binary I already had was compiled with those optimizations.
As I thought you meant originally. You should find in the build directory that gcc puts the binary in before doing the strip/install. If you can't find it, remove the binary from the build directory and alias the command "strip" to "true" like:
Code:
alias strip=true

Then do the make again. Then search through the binary with the nm command.
 

7 More Discussions You Might Find Interesting

1. Solaris

Need help in building gcc on solaris.

We are moving from old solaris to new version of solaris. I have copied the gcc compiler installed on old server to new solaris server. But just copying didn't work. So I am trying to build it on the new server. The server version is sailfish@st-kvar02 -> uname -a SunOS st-kvar02 5.10... (7 Replies)
Discussion started by: nalina.hv
7 Replies

2. Solaris

Installing gcc - recieve error message gcc : cannot execute

AIM- Install Oracle 11g on Solaris using VMWare Steps 1.Logged on as root 2.Created subfolders à /usr/local/bin & /usr/local/bin/gcc 3.Downloaded gcc & libiconv & unzipped them on my harddrive & burnt them on CD 4.Copied files from CD to /usr/local/bin/gcc 5.Terminal (root) à pkgadd -d... (8 Replies)
Discussion started by: Ackers
8 Replies

3. Red Hat

Building a ppc476 enabled GCC cross compiler and toolchain

Building a ppc476 enabled GCC cross compiler and tool chain Hello, I am trying to build a cross GCC compiler for PPC476. I applied all the relevant patches. Cross compiler build was successful. When i try to compile the source code using the cross compiler i am getting the below error... (0 Replies)
Discussion started by: raghuhb
0 Replies

4. UNIX for Advanced & Expert Users

Building a ppc476 enabled GCC cross compiler and tool chain

Building a ppc476 enabled GCC cross compiler and tool chain Hello, I am trying to build a cross GCC compiler for PPC476. I applied all the relevant patches. Cross compiler build was successful. When i try to compile the source code using the cross compiler i am getting the below error... (1 Reply)
Discussion started by: raghuhb
1 Replies

5. Linux

Building a ppc476 enabled GCC cross compiler and tool chain

Building a ppc476 enabled GCC cross compiler and tool chain Hello, I am trying to build a cross GCC compiler for PPC476. I applied all the relevant patches. Cross compiler build was successful. When i try to compile the source code using the cross compiler i am getting the below error... (1 Reply)
Discussion started by: raghuhb
1 Replies

6. UNIX for Dummies Questions & Answers

mkdir: cannot create directory `/builds/somedir/': Permission denied

Hi, I am trying to run a shell script which contains an mkdir command as part of the execution. The script fails with the following error: mkdir: cannot create directory `/builds/somedir/': Permission denied The user running the script is 'harry' and belongs to group 'school'.... (5 Replies)
Discussion started by: Technext
5 Replies

7. Shell Programming and Scripting

Selenium Integration in Builds

Hi All, I have this scenario in place: 1. I have checked in Selenium Java files (Test cases) into my usual build and they are getting compiled in .class files. 2. I also have a build.xml which is used to run these tests. It basically has this: RELEASE_ROOT this has been set to the Java... (11 Replies)
Discussion started by: ankur328
11 Replies
installbsd(1)						      General Commands Manual						     installbsd(1)

NAME
installbsd - Installs a command (BSD version) SYNOPSIS
installbsd [-cs] [-g group] [-m mode] [-o owner] file destination The installbsd command moves or copies a binary file to the specified destination file or directory. It is most often used in makefiles. OPTIONS
Copies file to destination rather than moving it. Specifies a group for the destination file. The default group is staff. Specifies the mode of the destination file. The default mode is 755. Specifies the owner of the destination file. The default owner is root. Causes the binary file to be stripped after installation (see strip(1)). DESCRIPTION
If destination is a file and such a file already exists, installbsd removes it before file is moved or copied. If destination is a direc- tory, file is moved or copied into that directory with its original filename. installbsd will not move a file onto itself. EXAMPLES
To install a new command called fixit, enter: installbsd -c -o henry fixit /usr/bin This installs a new command by copying the program fixit to /usr/bin/fixit, with user henry as owner. SEE ALSO
Commands: chgrp(1), chmod(1), chown(1), cp(1), install(1), make(1), mv(1), strip(1) installbsd(1)
All times are GMT -4. The time now is 01:53 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy