这是为了编译和链接一个静态库(因此只有构建时间依赖项),该库的源代码是从 ubuntu 启动板构建机器人上的存储库(就像主程序的源代码一样)获取的。
目前我正在做:
#!/usr/bin/make -f
export PREFIX=/usr
export CFLAGS= -O3 -fomit-frame-pointer -flto -fwhole-program
export CXXFLAGS= -O3 -fomit-frame-pointer -flto -fwhole-program
%:
dh $@
override_dh_auto_configure:
cd src/munt;cmake -DCMAKE_CXX_FLAGS="-O3 -fomit-frame-pointer -flto" mt32emu;make;make install
#...compile of the program that depends on mt32emu...
但它失败了:
Install the project...
-- Install configuration: ""
-- Installing: /usr/local/lib/libmt32emu.a
CMake Error at cmake_install.cmake:36 (FILE):
file INSTALL cannot copy file
"/tmp/buildd/dosbox-0.74+20121225/src/munt/libmt32emu.a" to
"/usr/local/lib/libmt32emu.a".
make[2]: *** [install] Error 1
make[2]: Leaving directory `/tmp/buildd/dosbox-0.74+20121225/src/munt'
make[1]: *** [override_dh_auto_configure] Error 2
make[1]: Leaving directory `/tmp/buildd/dosbox-0.74+20121225'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
E: Failed autobuilding of package
I: unmounting /var/cache/pbuilder/ccache filesystem
I: unmounting dev/pts filesystem
I: unmounting proc filesystem
I: cleaning the build env
I: removing directory /var/cache/pbuilder/build//2751 and its subdirectories
这个想法是安装一个未打包在启动板 pbuilder env 中的 ubuntu 存储库中的静态库依赖项,因此它可以像已经是系统依赖项一样使用。
如果我尝试执行“sudo make install”(并将 sudo 添加到 debian/control 中的 build-deps),它会在本地测试时询问我“pbuilder”密码,我假设这会将机器挂在 ubuntu 上构建机器人。
编辑:它实际上在 buildbots 上失败了,因为“没有 tty 存在并且没有指定 askpass 程序”。