当前位置: 首页 > 工具软件 > UShare > 使用案例 >

ushare-1.1a 交叉编译

卢作人
2023-12-01

静态编译ushare时:

1、cd ushare-1.1a-static, ./configure --prefix=`pwd`/install --with-libupnp-dir=/home/yqdeng/workspace/upnp/libupnp-1.4.2/install/include --cross-prefix=mipsel-linux-

2、vi config.mak,将EXTRALIBS= -lixml -lthreadutil -lpthread -lupnp -L/home/yqdeng/workspace/upnp/libupnp-1.4.2/install/lib改成EXTRALIBS= -lixml -lupnp -lthreadutil -lpthread -L/home/yqdeng/workspace/upnp/libupnp-1.4.2/install/lib -static

3、make;make install


http://ushare.geexbox.org/

The following programs are required to build uShare1.1a
---------------------------------------------
arm-linux-gcc-3.4.1.tgz
libupnp-1.4.2.tar.bz2
ushare1.1a.tar.bz2



uncompress arm-linux-gcc 3.4.1
------------------------------------------------
tar -zxvf arm-linux-gcc-3.4.1.tgz -C /

# envirornment for the following compilations
----------------------------------------------
export PATH=/usr/local/arm/3.3.2/bin:$PATH
export BASE=/home/henry/ushare-ins/include
export CC=arm-linux-gcc
export LDFLAGS=-L$BASE/install/lib
export CPPFLAGS="-I$BASE/install/include
export CFLAGS="-I$BASE/install/include -I/home/henry/ushare/ushare-1.1a"
export PKG_CONFIG_PATH=/home/huaqin/libupnp/install/lib/pkgconfig

the process of compiling libupnp-1.4.2
-----------------------------------------------
tar -jxvf libupnp-1.4.2.tar.bz2
cd libupnp-1.4.2
./configure --prefix=$BASE/install --host=arm-linux
make
make install


the process of compiling
-----------------------------------------------
tar -jxvf ushare1.1a.tar.bz2
cd ushare1.1a
./configure --disable-dlna --disable-nls --sysconfdir=/home/henry/ushare/ushare-1.1a --with-libupnp-dir=$BASE/install/include --cross-prefix=arm-linux- --cross-compile
make





 
Error one:
[root@localhost ushare-1.1a]# ./configure --disable-dlna --disable-nls --with-libupnp-dir=$BASE/install/include --cross-prefix=arm-linux- --cross-compile
Checking for compiler available...
Checking for locales ...
Checking for ifaddrs ...
Checking for langinfo ...
Checking for iconv ...
Checking for libixml ...
Error, can't find libixml !
See file "config.log" produced by configure for more details.
SOLVE:
You should set the bolew environments,
export LDFLAGS=-L$BASE/install/lib
export CPPFLAGS=-I$BASE/install/include

 

Error two:
[root@localhost ushare-1.1a]# ./configure --disable-dlna --disable-nls --with-libupnp-dir=$BASE/install/include --cross-prefix=arm-linux- --cross-compile
Checking for compiler available...
Checking for locales ...
Checking for ifaddrs ...
Checking for langinfo ...
Checking for iconv ...
Checking for libixml ...
Checking for libthreadutil ...
Checking for libupnp >= 1.4.2 ...
Error, libupnp < 1.4.2 !
See file "config.log" produced by configure for more details.
SOLVE:
export PKG_CONFIG_PATH=/home/huaqin/libupnp/install/lib/pkgconfig


Error three:
[root@localhost ushare-1.1a]# make
presentation.c:27:20: config.h: No such file or directory
presentation.c: In function `build_presentation_page':
presentation.c:163: error: `VERSION' undeclared (first use in this function)
presentation.c:163: error: (Each undeclared identifier is reported only once
presentation.c:163: error: for each function it appears in.)
make[1]: *** [presentation.o] Error 1
make[1]: Leaving directory `/home/henry/ushare/ushare-1.1a/src'
make: *** [all] Error 2
SOLVE:
export CFLAGS="-I$BASE/install/include -I/home/henry/ushare/ushare-1.1a"

 类似资料: