Tagged Questions
0
votes
1answer
31 views
Problems with linking C++ code
I'm tying to learn how to make and use a static library and I've faced some problems. This is what I've done.
First I've written some code and placed in into String.h and String.cpp files.
Then I've ...
0
votes
1answer
39 views
How do libraries work at compile & link times [duplicate]
Im new to c++, getting an understanding on how libraries work, i know what a library is, but i was hoping for a quick summary of how it works at both compile time and link time?
1
vote
1answer
115 views
Link step can't find symbols (XC8 compiler)
I'm trying to compile and link a C program using the XC8 compiler. I changed from the C18 compiler and made some minor compatibility changes to the code. With C18, the code compiled and linked just ...
1
vote
3answers
57 views
memory sharing in .o file
Lets say i have a A.c file and compile it to a A.o file.
The A.c file is as follows:
int a;
void add(void)
{
}
The A.o file together with a B.o form a 1.exe file.
The A.o file together with a C.o ...
0
votes
1answer
46 views
Correct compiler terminology
I'm coding a compiler that consists of four separate programs: the preprocessor, the to-assembly compiler, the assembler (NASM) and the linker (ld).
When writing about it, I have some issues ...
0
votes
2answers
48 views
Visual C++ 2010 Linking [closed]
I have been trying to use some libraries for days now, but I just can't find my way around linking them right.
Some of them I managed to get to work some not and it is always a linking error.
I know ...
0
votes
0answers
13 views
Wrap option in Diab compiler
I know that gcc has a --wrap option for wrapping function calls, I would like to do a similar wrapping using Wind River Diab compiler, any ideas how to do this?
0
votes
1answer
24 views
Two functions from the same library: why does one generate undefined reference while the other doesn't?
I want to replace pthread_mutex_lock by pthread_mutex_trylock in a function and when I do so, I get the "undefined reference" error message (See below). If I replace the lines 411-13 by ...
0
votes
0answers
44 views
Apple Mach-O Linker Warning about overriding instance method and shows same path
in my project I get over 200 linker warning, which have all the same pattern.
For example:
ld: warning: instance method 'methodName' in category from
...
0
votes
1answer
21 views
How to extend a ELF binary
I am writing a small instrumentation tool. I must insert the instrumentation routine within the binary file. A good approach should be to insert those routines in a separate code segment and a ...
4
votes
1answer
117 views
Do not manage linking library with clang
I want to built a webserver with libuv and http-parser.
The current project structure is
Makefile
/src
/main.c
/deps
/libuv (git clone of libuv)
/http-parser (git clone of http-parser)
In ...
0
votes
0answers
45 views
Static library vs Import library
Basing on informations presented here a link! I'd like to know how does the linker determine if the library .lib I linking is just a static library which contains all definitions or an import library ...
0
votes
1answer
62 views
How does linker know what to link with a system call?
When I was trying to compile squid by hand on a RHEL 5.5 server, run configure and got
configure: WARNING: Eep! Cannot find epoll, kqueue, /dev/poll, poll or select!
configure: WARNING: Will try ...
0
votes
3answers
97 views
How does pound-including standard library work?
My basic question is how the compilation process works to use standard library routines. When I pound include in C, does the preprocessor take the entire standard library and paste it into my source ...
4
votes
1answer
105 views
DLL and compiler settings
Many articles and posts warn about compiler settings that can cause incompatibilities when linking and using DLLs.
If you follow best practice when writing your DLL in C++ and export your functions ...
-1
votes
2answers
78 views
Failing to compile supersimple code
I don't understand why but I'm failing to compile supersimple C code in two files when there are some references between them. I'm using Visual Studio 2010, opening Empy C++ project Here it is:
...
0
votes
1answer
26 views
DLL and LIB files
What is the difference between a DLL and a LIB file?
What is inside a DLL file and what is inside a LIB file?
Are both DLL and LIB files necessary to create an executable?
0
votes
0answers
64 views
what is GCC compiler option to get Segment Override prefix in x86
I have memory layout (In Increasing memory addr) like :
Code Section (0-4k), Data Section(4k-8k), Stack Section(8k-12k), CustomData Section(12k-16k).
I have put some special arrays, structs in ...
1
vote
2answers
57 views
Asembly code on different O.S.s but same processor is same or different?
When a C/C++ code is compiled, it produces assembly code.
If I have Windows and Linux dual boot (i.e. exact same processor) and I write a program in C++ on both Windows and Linux then
the assembly ...
0
votes
1answer
115 views
C++ Compiler or Linker optimization
I'm trying to create an autoload class system using class mapping as specified in best answere of this post:
Is there a way to instantiate objects from a string holding their class name?
so i've ...
0
votes
3answers
93 views
Compiler error vs linker error? [closed]
Just reading Effective C++ and he mentions several times "linker error", as opposed to compiler error.
What constitutes a "linker error" and how do they differ from "compiler errors"? Are the ...
1
vote
1answer
31 views
GNU GCC: How to compile google-pertools such that it does not require @GLIBCXX_3.4
I compiled the library and checked the symbols using readelf command, I got
$ readelf -s ./.libs/libtcmalloc.so.5 | grep GLIB
94: 0000000000000000 32 OBJECT GLOBAL DEFAULT UND ...
0
votes
2answers
81 views
Compiler says pow is undefined even when I'm linking with -lm, but compiles when
value *= pow(10, 3); // this one compiles
value *= pow(10, aVar); // this one produces this error:
//Number.c:(.text+0x469): undefined reference to `pow'
aVar is an int ...
1
vote
3answers
143 views
Compile/Link unused Functions/Procedures in Delphi
I would like to "provide" several functions/procedures or even vars in my application without ever using them in my own code. Does the compiler automatically ignore unused vars and functions or is it ...
0
votes
0answers
13 views
different argument in VIA file for armlink
When I use armlink, it has one option called --via and I read some axf.via file I found some thing in axf.via like below:
$PATH/xxx.lib
I think during the link process, armlink can use this ...
2
votes
1answer
54 views
QT creator doens't linking
I have a project with 2 subproject (Sub1 and Sub2):
ESI
|
|__Sub1
|
|__Sub2
In a implementation file (.cpp) of a class in the Sub2 (demo1.cpp) project i've the needs of include a class of the Sub1 ...
6
votes
3answers
164 views
C object file compatibility between computers
First I want to state for the record that this question is related to school/homework.
Let’s say computers CP1 and CP2 both share the same operating system and machine language. If a C program is ...
2
votes
1answer
79 views
Placing code and variables into a specific RAM section defined in the linker
Thanks for taking a look.
When compiling my C project the linker generates a file where I can define the RAM sections I want to have, like this:
-ra RAMCHECK=0x00028000/0x000296FF
-ra ...
0
votes
1answer
46 views
Compiling/linking GSL
I have the following Makefile for a program that uses gsl:
CXX = g++
ARCH = -mtune=generic
COFLAGS = $(ARCH) -O3 -pipe -I./gsl
CXXFLAGS = -Wall $(COFLAGS)
PROGRAMS = myProgram
GSLFLAGS= ...
0
votes
1answer
2k views
ld: symbol(s) not found for architecture x86_64 using GNU Make and clang
I am getting a ld: symbol(s) not found for architecture x86_64 error. I did do a thorough search through previous threads, but did not find a solution.
As a test I am compiling a program test.cpp:
...
4
votes
4answers
82 views
Position of functions in executable
Is there a requirement in the C standard that functions in the compiled (and linked) binary will appear in the ordered they are written in the C file?
Please assume that in the example below the ...
1
vote
1answer
348 views
iPhone/iPad: Link ARMv7 (Library) to ARMv7s (App)
According to the literature, an A6 processor will execute ARMv7 code. My project is failing at link because a library was built for ARMv7, but the application is built for ARMv7s.
A typical message ...
0
votes
1answer
318 views
Compiling ffmpeg for IOS (R_ABS reloc error)
I've been trying to compile the ffmpeg libraries for IOS. I can get it to work if I use --disable-asm, but for performance I'd like to build with them enabled.
This is one of many configure commands ...
0
votes
0answers
103 views
C++ Linking libraries in Code Blocks from GTK
I am using CodeBlocks to run a simple GTK application. Now I have downloaded the GTK bundle with all the necessary libraries and all the necessary header files. I have set my global variables or what ...
0
votes
1answer
405 views
Linking fails using mpicc on C++ program
I'm running Ubuntu 11.04 64-bit. I have installed OpenMPI. I'm trying to build the following code, which is a snippet from a test problem from the book "Using MPI" by Gropp/Lusk/Skjellum:
#include ...
0
votes
0answers
43 views
Reduce filesize of binary thats statically linked against opencv
Using the cv::Mat class from opencv in my application increases the filesize of the binary by about 900 kb:
// Nothing but these two lines increases binary filesize by 900 kb
cv::Mat m;
m.create(1, ...
2
votes
1answer
74 views
TLS variable lookup speed
Consider the following program:
#include <pthread.h>
static int final_value = 0;
#ifdef TLS_VAR
static int __thread tls_var;
#else
static int tls_var;
#endif
void __attribute__ ((noinline)) ...
2
votes
3answers
151 views
Despite violation of the One Definition Rule, how is it possible that a compiler/linker COULD choose an alternate inline constructor?
Referring to What determines which class definition is included for identically-named classes in two source files?, in which there is a deliberate, clear violation of the One Definition Rule, I am ...
3
votes
2answers
94 views
why does linker have a tougher task in C++ compared to C? [closed]
The interviewer asked me this question and not sure if my answer to it was good enough or not. Anyone has any ideas?
2
votes
4answers
156 views
Linking error vs. compilation error
Why does double declaration of structs causes a compilation error, while double definitions of functions causes a linking error?
0
votes
1answer
89 views
Undefined reference on shared library JNI
Okay, so I'm developing something With JNI + C, and the java code calls a method on a .c that uses another compiled C code, so Java -> C -> C.
but when running, if I don use the second C code, ...
1
vote
2answers
345 views
error PRJ0002 : Error result -1073741515 returned from 'C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\cl.exe'
I am using VS2008. (C++ code). I am getting the error when compiling:
error PRJ0002 : Error result -1073741515 returned from 'C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\cl.exe'
I tried ...
0
votes
1answer
113 views
Linker errors when attempting to convert const char * to LPTSTR
I have the following code snippet that converts a const char * to a LPTSTR, however I get linker errors when I compile.
char * pCopy3 = NULL;
if (sizeof(TCHAR) == sizeof(char))
{
...
2
votes
1answer
89 views
how to compile multiple file under make
I have several .cpp and .hpp files. I want compile and lnk them over using make. How can I do that ?
sample.cpp sample.hpp
sample_2.cpp sample_2.hpp
sample_3.cpp sample_3.hpp
...
...
1
vote
0answers
70 views
How to ensure the checksum of the dlls build from the same project are the same
I am working on a project that need 3rd party company to verify our source code and we must insure that the dlls build at our site has the same checksum as the ones build at their site.
I am trying ...
1
vote
1answer
664 views
linker claims library not found, strace shows it try to access valid path though
I am trying to cross-compile something for Android, so I am using a separate toolchain. There is a library that the linker is complaining it cannot find:
arm-eabi-gcc: fatal error: ...
0
votes
1answer
59 views
can you link D object files with C object files?
Let's say I have two source files, one written in the D programming language and the other one written in the C programming language. I both just compile them, the D source with the DMD (Digital Mars ...
0
votes
3answers
105 views
Does the C language impose global linking?
If we have a set of modules (translation units)
symbols can be linked in two manners:
'local' linking - given exported symbol 'a'
can be linked to the appropriate module m1 and other given
symbol ...
8
votes
4answers
149 views
Will g++ link my programs with classes it doesn't use from a library?
I've created a simple static library, contained in a .a file. I might use it in a variety of projects, some of which simply will not need 90% of it. For example, if I want to use neural networks, ...
0
votes
3answers
152 views
How to dynamically link GCC objects?
I'm unsure if the question is phrased correctly, or if what I want to is possible.
I have an existing GCC application (compiled for a Cortex-M3 if that matters). What I want to do is create a little ...

