Sponsored Content
Top Forums Programming Linker errors linking to .a files on OS X Post 302928580 by MarshallBanana on Friday 12th of December 2014 11:36:40 PM
Old 12-13-2014
Linker errors linking to .a files on OS X

Basically my problem is that when I try to compile anything using ./configure && make, it fails because of linker errors. I can reproduce the behavior I'm getting as follows:

I have the two following files

main.c:
Code:
#include <stdio.h>

extern void func(void);

int
main(int argc, char **argv)
{
    printf("Before func\n");
    func();
    return 0;
}

func.c:
Code:
#include <stdio.h>

void
func(void)
{
    printf("In func\n");
}

If I do the commands
Code:
gcc -c func.c
gcc -c main.c
ar rc func.a func.o
gcc -o test main.o func.a

I get the output
Code:
ld: warning: ignoring file func.a, file was built for archive which is not the architecture being linked (x86_64): func.a
Undefined symbols for architecture x86_64:
  "_func", referenced from:
      _main in main.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status

Any idea what I should do?

Last edited by MarshallBanana; 12-13-2014 at 12:43 AM..
 

10 More Discussions You Might Find Interesting

1. Programming

compiling and linking 2 C files ...??

Hi mates, I am trying to copile and link to C programs with command: cc file1,file2 but i raises the error "file not found" ... am i doing the right way? any suggestion will be appreciated. thanks abdul (4 Replies)
Discussion started by: abdul
4 Replies

2. Programming

Linking problem while linking to shared library

Hi I'm getting ld: fatal: option -h and building a dynamic executable are incompatible ld: fatal: Flags processing errors When I run ld -shared -L/usr/dt/lib -lDtSvc -o builtin.so Workspace.o after running gcc -fPIC -I/usr/X11R6/include -I/usr/dt/include -c Workspace.c I'm... (6 Replies)
Discussion started by: laho
6 Replies

3. UNIX for Dummies Questions & Answers

modifying C file and linking back to project files

hi, This is the first time I work in a big C project. All source code files are located in say directory /source/pp and all header files are in /include/pp. I've created a link to both of these directories from my home dir, say /home/ss. So in the /home/ss dir I have the /source/pp and /include/pp... (1 Reply)
Discussion started by: bruins2005
1 Replies

4. UNIX for Dummies Questions & Answers

Linking Files in UNIX (shortcuts)

Hello, Can anyone tell me how I can make a file link or shortcut in UNIX 4.0, several file links where damaged during an outage examples below. Examples: file -> file libX11.so -> /usr/shlib/libX11.so.pre.O3D All of the file links that were damaged were in /shlib and point to... (3 Replies)
Discussion started by: jays337
3 Replies

5. Programming

C files searching and Linking

Dear friends, First off all , let me apologize for my inexperience. I am just starting use of Linux and gcc . Actually I ve some .c files in the present directory , and now I am giving +vc <my_file1.c> <my.file2.c> <myfile3.c>. All the c files are in present directory.... (2 Replies)
Discussion started by: user_prady
2 Replies

6. Shell Programming and Scripting

checking ERRors in files

I m having trouble in a script.I need To write a script that will check for Following Errors in Logs Files,i.e files having Extension .log The erros are 2008-01-01 15:19:11,822 ERROR - ORA-01115: IO error reading block from file 51 (block # 717090) ORA-01110: data file 51:... (4 Replies)
Discussion started by: ali560045
4 Replies

7. Shell Programming and Scripting

Recursively hard linking files -- bonehead question

I used to program ksh a while back, but I've been off in Oracle/Windows land (for clients -- not by choice) for so long that I can't remember what should be an easy thing. Here's the scenario: 1)Find all files and directories beneath some directory point (A). 2)If directory, make the... (7 Replies)
Discussion started by: scyphers
7 Replies

8. Solaris

proc precompilation - linking results in symbolic referncing errors

I can compile and link a piece of code on Solaris 2.6 .. I want the same thing to be done on Solaris8.. I am getting symbolic refernce errors while linking... Errors looks to be with proc symbols defination.. Any ideas ?? fgs_lib/finder_dbl.pkg_shr_def->lib/finder_dbl.so expand_file "cc -G... (0 Replies)
Discussion started by: shafi2all
0 Replies

9. Solaris

runtime linker errors

Hey guys I have a solaris 10 OS, with a zone configured. In that zone, I am trying to install an Oracle Client. However, when I run the oracle installer, I get the following error: ld.so.1: java: fatal: libexpat.so.0: open failed: No such file or directory ld.so.1: java: fatal:... (2 Replies)
Discussion started by: goodvikings
2 Replies

10. Shell Programming and Scripting

Script for linking files with paths in 2 text files

I have 2 txt files, 1.txt and 2.txt which contain the paths to files that need to be linked. Example 1.txt: /root/001/folder2/image4.nii.gz /root/002/folder2/image4.nii.gz Example 2.txt: /root/001/folder2/image5.nii.gz /root/002/folder2/image5.nii.gz Each line represents images from... (7 Replies)
Discussion started by: LeftoverStew
7 Replies
CIL(Linker)															       CIL(Linker)

NAME
Mono CIL Linker SYNOPSIS
monolinker [-o output_directory][-l i18n_assemblies][-c skip | copy | link] -x descriptor | -a assembly | -i info_file ... DESCRIPTION
monolinker is a CIL Linker. The linker is a tool one can use to only ship the minimal possible set of functions that a set of programs might require to run as opposed to the full libraries. The linker analyses the intermediate code (CIL) produced by every compiler targeting the Mono platform like mcs, gmcs, vbnc, booc or oth- ers. It will walk through all the code that it is given to it, and remove all the unused methods and classes. This is done using a mark and sweep operation on all the code that it is referenced. The generated output from the monolinker can be later processed by the mkbundle tool to generate small native self-contained executables. Do not confuse this with the Assembly Linker (al) which creates assemblies from manifests, modules and resource files. OPTIONS
-d search_directory Specify a directory to the linker where to look for assemblies. -o output_directory Specify the output directory, default is 'output'. If you specify the directory `.', please ensure that you won't write over important assemblies of yours. -b true | false Specify whether to generate debug symbols or not, default is false. -g true | false Specify whether to generate a new guid for each linked module or reuse the existing one, default is true. -l i18n_assemblies Specify what to do with the region specific assemblies Mono have a few assemblies which contains everything region specific: I18N.CJK.dll I18N.MidEast.dll I18N.Other.dll I18N.Rare.dll I18N.West.dll By default, they will all be copied to the output directory, but you can specify which one you want using this command. The choice can either be: none, all, cjk, mideast, other, rare or west. You can combine the values with a comma. -c action Specify the action to apply to the core assemblies. Core assemblies are the assemblies that belongs to the base class library, like mscorlib.dll, System.dll or System.Win- dows.Forms.dll. The linker supports three operations on these assemblies, you can specify one of the following actions: skip This instructs the linker to skip them and do nothing with them. copy This instructs the linker to copy them to the output directory, link This instructs the linker to apply the linking process and reduce their size. -p action assembly Specify per assembly which action to apply. -x descriptor Use an XML descriptor as a source for the linker. Here is an example that shows all the possibilities of this format: <linker> <assembly fullname="Library"> <type fullname="Foo" /> <type fullname="Bar" preserve="nothing" required="false" /> <type fullname="Baz" preserve="fields" required="false" /> <type fullname="Gazonk"> <method signature="System.Void .ctor(System.String)" /> <field signature="System.String _blah" /> <field name="someFieldName" /> </type> </assembly> </linker> In this example, the linker will link the types Foo, Bar, Baz and Gazonk. The preserve attribute ensures that all the fields of the type Baz will be always be linked, not matter if they are used or not, but that neither the fields or the methods of Bar will be linked if they are not used. Not specifying a preserve attribute implies that we are preserving everything in the specified type. The required attribute specifies that if the type is not marked, during the mark operation, it will not be linked. The type Gazonk will be linked, as well as its constructor taking a string as a parameter, and it's _blah field. You can have multiple assembly nodes. -a assemblies use an assembly as a source for the linker. The linker will walk through all the methods of the assembly to generate only what is necessary for this assembly to run. -i info_file use a .info xml file as a source for the linker. An info file is a file produced by the tool mono-api-info. The linker will use it to generate an assembly that contains only what the public API defined in the info file needs. -s [StepBefore:]StepFullName,StepAssembly[:StepAfter] You can ask the linker to execute custom steps by using the -s command. This command takes the standard TypeFullName,Assembly format to locate the step. You can customize its position in the pipeline by either adding it before a step, or after. Example: using System; using Mono.Linker; using Mono.Linker.Steps; namespace Foo { public class FooStep : IStep { public void Process (LinkContext context) { foreach (IStep step in context.Pipeline.GetSteps ()) { Console.WriteLine (step.GetType ().Name); } } } } If you compile this custom against monolinker to a Foo.dll assembly, you can use the -s switch as follows. To add the FooStep at the end of the pipeline: monolinker -s Foo.FooStep,Foo -a program.exe This commanand will add the FooStep after the MarkStep: monolinker -s MarkStep:Foo.FooStep,Foo -a program.exe This command will add the FooStep before the MarkStep: monolinker -s Foo.FooStep,Foo:MarkStep -a program.exe This command will add the FooStep before the MarkStep -m CustomParam ParamValue Specify a parameter for a custom step. COPYRIGHT
Copyright (C) 2007 Novell, Inc (http://www.novell.com) BUGS
Bugs report are welcome at http://bugzilla.ximian.com Product Mono Tools, Component linker. MAILING LISTS
Mailing lists are listed at http://www.mono-project.com/Mailing_Lists WEB SITE
http://www.mono-project.com/Linker AUTHORS
The linker has been written by Jb Evain, and have been partially founded by the Google Summer of Code. LICENSE
The linker is licensed under the MIT/X11 license. Please read the accompayning MIT.X11 file for details. SEE ALSO
al(1),mkbundle(1),mono(1),mcs(1). monolinker CIL(Linker)
All times are GMT -4. The time now is 08:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy