[ Thread Index |
Date Index
| More lists.tuxfamily.org/crisos Archives
]
- To: crisos@xxxxxxxxxxxxxxxxxxx
- Subject: [crisos] linking problem
- From: Richard <richard.workman@xxxxxxxxxxxxxxxx>
- Date: Mon, 2 Jun 2008 16:19:43 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:mime-version:content-type:x-google-sender-auth; bh=9z9yyGUlwpcQapIL2WHVPTrs7V2Txi8Cg1AGz9Bg66Q=; b=bUeJ366aNDU26Jl0u9doF0WarXoeY2HxmHOnsb+XNNuv5ljkrst0hJa78SecxJTpRy1GPQH+n6BN8pO2Zw8AQLItOhg89WI7SGD09YPPNfAnRECWuvc74rPVqBrf78GhcpM9b1OammoOharDBCEgdogcyZjvwqpvWU4/padFkWA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:mime-version:content-type:x-google-sender-auth; b=CH4+g/3P1zeyY12LzSaxMuxFp+EZQXOe2C8pQKtm4iGZwL0d28kG31gZjouPzm2yRNeKwgTXIc39YX09x/uJ2kB62oNjD7bcRaH0uMPNpg+tRCHtgHs97klPBOGgXsmIjfgJTMo7UBbw6orbAJDsqp2DxeMsYarD9RXuHNDjUbg=
hey
i am having a few problems compiling my own app using the SDKF. it depends on libcurl, so i have built this, and my makefile includes the following:
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS) \
-I$(STAGING_DIR)/usr/include \
-L$(STAGING_DIR)/usr/lib"
endef
on compiling, i get a bunch of errors complaining about missing libraries required by libcurl (libssl, libcrypto, libz) but all of these are present in the $(STAGING_DIR)/usr/include folder.
what am i doing wrong?