Tagged Questions
The linking-errors tag has no wiki summary.
3
votes
1answer
120 views
Issue in running QR Code reader sdk
I am doing a project to read QR codes.For that I am using the sample code from 2D barcodes (QR Code, Data Matrix) - iOS4 or above only from the link http://www.quickmark.com.tw/En/basic/SDK.asp But ...
3
votes
5answers
828 views
Getting error when compiling debug mode: C++/CLI - error LNK2022
I've got a CLI code wrapping a C++ DLL.
When i try to compile it in debug mode, i get the following error:
Error 22 error LNK2022: metadata operation failed (8013118D) :
Inconsistent layout ...
1
vote
0answers
527 views
Android NDK - problem linking an external library (can't found it)
I am working with Android NDK r6b under cygwin (the system is updated correctly). I am modifying the hello-jni sample in order to learn working with NDK. Since i have a library written in C++ that i ...
1
vote
1answer
566 views
c )make error& link problem: i386:x86-64 architecture of input file, incompatible with i386 output
I have this output with error message when i type "make" in terminal!!
gcc test1.o dispatchQueue.o -o test1 -pthread
/usr/bin/ld: i386:x86-64 architecture of input file `test1.o' is incompatible with ...
0
votes
0answers
31 views
undefined reference of assembly element in c file
I have linkers errors(undefined reference) that I cannot solve by myself. I use GCC Sourcery G++ Lite 4.5.2 for ARM.
I have a lot of undefined reference and they almost all refer to assembly file. ...
0
votes
1answer
59 views
Linker library error in visual studio
Running visual studio 2010 writing an openGL program in C++
I'm getting this error, and can't for the life of me figure out why
fatal error LNK1104: cannot open file 'Image_Loading/nvImage.lib'
...
0
votes
1answer
44 views
Link error when calling RUNTIME_CLASS on new class
I have a Visual Studio 2010 project done on MFC. I receive these errors:
2>COrderContentsItemsDocument.obj : error LNK2028: unresolved token (0A0001CA) "public: static struct CRuntimeClass * ...
0
votes
4answers
340 views
Include cuda kernel in my project
I have this c++ project in which I call a cuda kernel by means of a wrapper function.
My c++ file looks like this (this is extern.cc):
#include "extern.h"
#include "qc/operator.h"
#include ...
0
votes
0answers
106 views
error when compiling cUrl in win xp with openssl using winbuild (command line)
hi
i try to compile release version of cUrl using the winbuild script
my command line is:
nmake /f makefile.vc mode=static VC=9
WITH_DEVEL=../deps WITH_SSL=static
DEBUG=no USE_IDN=no
and ...
0
votes
1answer
86 views
Stack link error question
The compiler gives me these errors when I run my program -
"Stack<int>::push(int&)", referenced from:
_main in main.o
"Stack<int>::~Stack()", referenced from:
_main in ...
0
votes
1answer
2k views
linking in library that contains reference to cuda kernel
I am trying to figure out how to use a CUDA kernel as part of a library so that I can just add the library to my existing C++ source files, and be able to use the cuda kernel.
So how do you go about ...
0
votes
2answers
129 views
Linking error while trying to integrate FOMD application with mine
i am trying to use FMOD example application "dsp_effectperspeaker" in my application. But i m getting error
dyld: Library not loaded: @loader_path/../Frameworks/libfmodex.dylib
Referenced from: ...
0
votes
1answer
603 views
wxWidgets and “Implement_App” causes _main duplicate symbol error
I'm compiling a trivial wxWidgets app on MacOS X 10.6 with XCode 3.2
The linker is return an error about the symbol _main being defined twice:
once in main.mm
once in the test_app.cpp file.
...
0
votes
3answers
945 views
Qt Linking Error
I configure qt-x11 with following options
./configure -prefix /iTalk/qtx11 -prefix-install -bindir /iTalk/qtx11-install/bin -libdir /iTalk/qtx11-install/lib -docdir /iTalk/qtx11-install/doc ...
-1
votes
2answers
64 views
Linking error in vc++
I am very new to VC++ and I am running the program on VC++ for the first time.
I strictly followed the instructions given in Microsoft Programming Visual C++ book and created one project as ...