Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
715 views

Weird undefined symbols of static constants inside a struct/class

Either I'm very tired or something weird is happening that I'm not aware of, because the code below is resulting in undefined symbols for Foo::A and Foo::B when linking. This is minimized as much as I ...
5
votes
3answers
272 views

Xcode to develop for the Arduino

Please read this well to make sure you understand what I want to do. I DO want Xcode to be able to compile, but only so I can debug in Xcode. I do NOT want to use Xcode to compile or upload the code ...
5
votes
2answers
452 views

How do I reliably get Instruments 4.x to symbolicate?

I have a bit of a dilemma — no matter what I do, I cannot get Apple's Instruments.app to symbolicate any of the included instruments while I'm profiling on my devices (it works OK in the iOS ...
4
votes
1answer
293 views

Mac OS X App backwards compatibility 10.6 and 10.7 while using NSPopovers

What is the best way to implement backwards compatibility, when building an app for Mac OS X 10.7 but also staying compatible for 10.6? I have an application that uses an NSPopover when the client is ...
3
votes
1answer
78 views

Export symbols file: Objective C derived class members, 64-bit

I have a Cocoa-based universal dynamic library that also includes more static libraries, from which I want to export functionality. It seems I cannot do the latest without using an export symbols ...
3
votes
3answers
233 views

D and SDL - functions undefined

I've got this very simple D program (pk.d): import std.stdio; import SDL; int main(string[] args) { writefln("Hello world"); if (SDL_Init( SDL_INIT_VIDEO ) < 0) { writefln("Unable ...
3
votes
4answers
314 views

How do I compile and link C++ code with compiled C code?

I want to be able to use Cmockery to mock C functions called from C++ code I'm testing. As a step towards that, I've renamed the Cmockery example run_tests.c to run_tests.cpp, and am attempting to ...
3
votes
2answers
377 views

ld reports missing symbols, but symbols seem to exist

I'm trying to link my mac application to the wonderful libancillary library. However, I have changed the library build script to create a shared library. I can inspect the symbols in this library ...
2
votes
1answer
89 views

What is the “___emutls_get_address” symbol?

Oh, I am a newbie in GCC and MAC and Makefile. Today I intended to build a dynamic lib using MAC OS X and GCC 4.4.2, but when linking the .o files, the compiler complains like this: Undefined ...
2
votes
1answer
2k views

“symbol(s) not found for architecture i386” problem using ShareKit

I want to use the http://getsharekit.com framework for future iOS projects. Hence I started testing out the framework. But I already get the following error: Undefined symbols for architecture i386: ...
2
votes
2answers
544 views

Ffmpeg compilation fails due to undefined symbol _x264_encoder_open_112 for architecture x86_64

I am compiling ffmpeg on Snow Leopard from source. Using Macport is not an option since I have some custom modification in ffmpeg. The make commands are: $ ./configure --enable-gpl ...
2
votes
1answer
315 views

Problem linking Boost.Filesystem statically to a shared library

I'm building a shared library with GCC 4.5.2 and Boost 1.46.1 (compiled with --build-type=complete) and this is a command from Makefile which does the linkage part: $(CXX) -static -lboost_filesystem ...
2
votes
1answer
385 views

Getting “Undefined symbols” when trying to use EventKit?

I am trying to use EventKit based around the doco & SimpleEKDemo application, however I am getting the following single error. What does this error mean and what steps would be recommended for ...
2
votes
1answer
581 views

JNI Bindings - Undefined symbol: gcj_personality_v0

I'm trying to convert a valid C JNI binding to C++ because I want to link to C++ source (open source implementation of an image processing algorithm) from some Java code. I got everything working in ...
2
votes
2answers
125 views

Why does Lua report that lua_pushlstring is undefined?

I managed to compile Lua 5.1.4 for Palm webOS and now I'm trying to write an extension to use webOS' services from Lua. However, when I try to load my library, Lua reports: undefined symbol: ...
2
votes
1answer
776 views

Error with swig: undefined symbol: _ZN7hosters11hostersLink7getLinkEi

I'm trying to make a python binding for the this library: http://code.google.com/p/hosterslib/. I'm using swig, heres is the code: %module pyhosters %{ #include "hosters/hosters.hpp" %} ...
1
vote
3answers
111 views

Undefined Symbol in C++ When Loading a Python Shared Library

I have been trying to get a project of mine to run but I have run into trouble. After much debugging I have narrowed down the problem but have no idea how to proceed. Some background, I am using a ...
1
vote
0answers
167 views

iPhone libxml2 undefined symbols (with gdata, kissxml, touchxml, etc.)

I'm trying to use any one of the libxml based 3rd party XML parsers, but I can't because I think I have a libxml2 problem of some sort I set my other linker flags to -lxml2 and header search paths ...
1
vote
0answers
66 views

set “LOCAL_ALLOW_UNDEFINED_SYMBOLS = true” to remove --no-undefined from the linker flags

in Android.mk i set "LOCAL_ALLOW_UNDEFINED_SYMBOLS = true", but in the result, " -Wl,--no-undefined "still shows up. any ideas?
1
vote
0answers
151 views

Symbol lookup error when running Eclipse

When I close my eclipse,an error dialog pops up,and gives the belowing error information: JVM terminated. Exit code=127 /opt/java/bin/java -Xms40m -Xmx768m -XX:MaxPermSize=512m -jar ...
1
vote
3answers
218 views

again “undefined symbol” in runtime, c++

I have a data type and I can instantiate a variable of that type. like this: FetchAddr faddr(VirtualMemoryAddress( 0x0a )); The definition of FetchAdr is: struct FetchAddr { ...
1
vote
1answer
204 views

What do I link in to define boost::thread_specific_ptr and related?

I want to use boost::thread_specific_ptr but need to know what to add to my gcc v3.4.6 link line to define what it uses: /usr/include/boost/thread/tss.hpp:35: undefined reference to ...
1
vote
2answers
1k views

How to determine inter-library dependencies?

My project consists of a couple of static libraries, which are linked together in a final step. Now I have the problem, that the link order of the library is important (otherwise I get an undefined ...
1
vote
2answers
422 views

Undefined symbols error in C++ / Eclipse

I have a function to display the values of a vector in a table, but I keep getting an "Undefined symbols" error when linking. Here is my function prototype: void displayVectors(vector<string> ...
0
votes
1answer
142 views

Undefined symbols compiling GTK+ 3 with ATK 2.2.0 on CentOS 6

I'm trying to compile GTK+ 3 with ATK 2.2.0 on CentOS, but am getting an error with atk_window_get_type: make[4]: Entering directory `/home/mms/Source/gtk+/gtk' GISCAN Gtk-3.0.gir ...
0
votes
2answers
126 views

“cannot find symbol” error

I am making a really basic calculator program (I'm fairly new to Java.) I'm using the java.io.Console package for input from the command line, and my code looks like this: import java.io.Console; ...
0
votes
2answers
96 views

Undefined external symbol in shared library

I recently ran nm -m -p -g on the System.B.dylib library from the iOS SDK4.3 and was surprised to find a lot of symbols marked (undefined) (external). Why and when would an undefined symbol be marked ...
0
votes
0answers
45 views

use static Library for iPad Xcode

I want to make a static library for iOS device iPad with XCode. This library uses also Openssl libs. I followed a "tuto" in order to compile Openssl with Xcode and finally get my static lib. ...
0
votes
1answer
74 views

Compiling error in Mac OS X

I am trying to compile a file in Mac OS X but keep on getting the error Undefined symbols: "_main", referenced from: start in crt1.10.6.o ld: symbol(s) not found collect2: ld returned 1 exit ...
0
votes
2answers
50 views

Using objects of an app from shared object

I'm a little confused right now. Yesterday I had undefined symbols even if I used -rdynamic with g++. But now I don't have any error and that is even more disturbing. To explain a bit my case, I ...
0
votes
2answers
113 views

What does this Error mean : Undefined symbol: THREADVARLIST_STRINGS

I just started learning Free Pascal and I wrote this fairly basic program to practise arrays. I get two errors: Strings.lpr(32,1) Error: Undefined symbol: THREADVARLIST_STRINGS ...
0
votes
2answers
258 views

inheritance makefile C++ undefined symbol first referenced

I am having a compilation problem. The following are the files and the inheritance. dateType.h, dateTypeImp.cpp: define and implement dateType class addressType.h, addressTypeImp.cpp: define and ...
0
votes
1answer
208 views

Symbol lookup error problem in QT project

I am trying to add a new library to the Qt plugins folder. That plugin is located here: http://qt.gitorious.org/qt-solutions/qt-solutions/trees/master/qtjp2imageformat It says that it requires ...
0
votes
2answers
122 views

ppoll on solaris

this code compiles in Linux but not Solaris, because apparently ppoll() is Linux specific (I get an undefined symbol error in Solaris with GCC). Any help converting it? I don't think just using poll() ...
0
votes
2answers
176 views

creating a C++ MPI module for Python, import error

I have a Python module which wraps a C++ library. The library uses MPI and is compiled with mpicxx. Everything works great on some machines, but on others I get this: ImportError: ./_pyCombBLAS.so: ...
0
votes
1answer
197 views

Load library failed, but symbol is available from referenced library

I'm trying to write a Python binding for a C++ library from a vendor we have. I'm moving along, but it's quite painful (partly because we don't have the source for the library). Right now, gcc ...
0
votes
1answer
415 views

Compiling a SWIG Python wrapper for a static library?

This is a noob question. I'm trying to learn how to use SWIG to make a python interface for a C++ library. The library is a proprietary 3rd party library; it comes to me in the form of a header file ...
0
votes
1answer
132 views

In Xcode how do I specify the correct library in my project settings to avoid a link error?

I get a Undefined symbols error attempting to build an XCode project, and I'm pretty sure it is because the linker can't find a library (it's the library needed to use curses.h btw). I'm writing a ...
0
votes
1answer
289 views

Why would a runtime undefined symbol be fixed by adding /usr/lib to ld.so.conf?

I've got a case in linux where gcc and ld build things cleanly, but at runtime I get an undefined symbol (for something in libxerces-c.so.28), reported by one of my own shared libraries, when running ...
0
votes
1answer
312 views

Undefined symbol error on loading a module in Apache that uses libxml2

I am writing an Apache 2.2 module that uses the libxml2 API. I have compiled the module using following commands: apxs -I /usr/include/libxml2/ -c mod_xmltest.c sudo apxs -n xmltest_module -i ...
0
votes
2answers
693 views

Linking error: Undefined Symbols, lots of them (cpp cross compiling)

I get to the very last linking command (the actual executable is being linked) but i get a BUNCH of undefined symbols (and they're in cpp and look so scary to me, a simple c programmer) --its ...
0
votes
1answer
221 views

syntax error; unexpected symbol:

I'm making a bunch of c/src files, and get: syntax error; unexpected symbol: "EnableUART" It is referenced in a driver.c file and defined in a .src file. It is XDEF'd correctly, Here is the c ...
0
votes
1answer
905 views

Undefined symbol errors when linking of C++ project using Eclipse

I compiled one C++ project which transplanted from another project, and there are some undefined symbol warnings while linking after compiled. The point is that these warnings are so strange. They are ...
0
votes
3answers
3k views

Undefined symbol error for base class in C++ shared library

I compiled the following code as a shared library using g++ -shared ...: class Foo { public: Foo() {} virtual ~Foo() = 0; virtual int Bar() = 0; }; class TestFoo : public Foo { public: int ...