Compiling shared libraries into executable?

1.2k Views Asked by At

I'm trying to cross compile some software I developed for my Nokia N900. It has an ARM7 processor, and is running Maemo (Based on Debian Etch and Lenny I believe).

To cross compile I am using Scratchbox, which has worked fine in the past for other software.

The software I developed uses libpcap. The latest version in the repo's is 0.8, but I need at least 1.0. So I compiled 1.0 within Scratchbox.

Within Scratchbox my softwarre compiles fine, but when I use the compiled binary on the N900 I get an error:

Error while loading shared libraries: libpcap.so.1 cannot open sharedobject file: No such file or directory.

Here is my Makefile:

TARGET = foncon
LIBS = -lpcap
CC = gcc
CFLAGS = -Wall -I include
OBJECTS = foncon.o src/pretty_print.o

$(TARGET):$(OBJECTS)
    $(CC) $(CFLAGS) $(OBJECTS) -o $(TARGET) $(LIBS)

%.o: %.c
    $(CC) -c $(CFLAGS) $< -o $@ $(LIBS)

clean:
    rm -f foncon.o
    rm -f src/pretty_print.o

Is it possible to build libpcap within the executable?

0

There are 0 best solutions below