4
votes
3answers
1k views
Lua on iPhone?
I am trying to use Lua on the iphone.
On Mac OSX, in a normal Cocoa application (not iPhone), I used the following code:
lua_State* l;
l = lua_open();
luaL_openlibs(l);
luaL_load …
2
votes
4answers
202 views
C++ Newbie in Linker Hell
Hello all,
Using g++ and having linker errors. I have a simple program in split into two modules: main.cpp and Dice.h Dice.cpp.
main.cpp:
#include <iostream>
#include "Di …
2
votes
2answers
119 views
QT 4.5 - How do I enable LTCG in VS2005 when linking to QT libraries?
While attempting to link with QT 4.5 release, I run into this error message
fatal error C1047: The object or
library file
'c:\qt\2009.02\qt\lib\qtmain.lib' was
created wi …
2
votes
3answers
322 views
How to resolve this VC++ 6.0 linker error?
This is a Windows Console application (actually a service) that a previous guy built 4 years ago and is installed and running. I now need to make some changes but can't even build …
1
vote
2answers
130 views
Linking error in C++
Problem fixed. Thanks a lot!
I am having the following error in the code shown below:
Error is as follows:
$ g++ main.cpp Neighbor.cpp Graph.cpp
/tmp/ccclDcUN.o: In function mai …
1
vote
2answers
111 views
“Nonrepresentable section on output” error during linking on linux
I get this error at the linker stage when compiling the webkit-1.1.5 package on my Ubuntu 9.04 box:
libtool: link: gcc -ansi -fno-strict-aliasing -O2 -Wall -W -Wcast-align -Wchar- …
1
vote
1answer
265 views
Problem Linking Boost Library in Linux
I am trying to build a project using Boost's Asio and I am having some trouble. Initially, I tried to build the project without any additional libraries since everything is suppos …
1
vote
1answer
93 views
Building FLTK Project in Eclipse
I am having trouble getting set up with FLTK in Eclipse. I am trying to create an OpenGL window with the following code (which I found here):
#include <FL/Fl.H>
#include &l …
1
vote
1answer
90 views
xcode linker error
I'm trying to compile a bundle that uses a third party library. I've had this working a while ago, but now it just refuses to link. Here's a sample of the errors:
"lwpp::GlobalB …
1
vote
1answer
204 views
Error and warnings in Xcode when declaring Array of NSString* as a global extern
I am declaring an array of NSString* in a header file of a class.
PolygonShape.h
NSString* POLYGON_NAMES[] = {@"Invalid Polygon", @"Monogon", ...};
Now I am using this in Polygi …
1
vote
1answer
147 views
Help with linker failer: .gnu.linkonce.t…
I'm having trouble linking a shared library using gcc 3.2.3 with binutils 2.18. When I try to link the library I get the following error:
.gnu.linkonce.t_... referenced in section …
1
vote
1answer
103 views
Devpartner Instrumentation for Code coverage causing linker errors
So I've got a Visual studio 2005 solution that contains a C# project (test driver - creates exe) and 7 C++ Projects (dll's).
This solution builds fine up to this point.
I have De …
1
vote
2answers
126 views
Problem after renaming .NET library
I'm maintaining a c#.Net (vs2005) library, let's call it fooLib, developed by a coworker. Now management has decided that we should change it's name to, say, barLib.
So I have ren …
1
vote
6answers
193 views
Linker error while compiling C++ code
Hello,
First of all, excuse me for my poor knowledge on C++. I am a real Beginner!
I am trying to compile one C++ code on MS VS2005. I am getting a linker error as follows for be …
1
vote
3answers
360 views
“file not recognized” while using the GNU linker
I'm probably doing something wrong, being a newbie. Could you please help me out?
I've written a simple Hello World program in C called hello.c, and ran the following command:
gc …
