GUI based OIL Builder The free OSEK configuration builder
English Version英文版
 

截屏
下载
许可
使用指南
常见问题
开发论坛
SVN访问
编译GOB
Trac
FreeOSEK
OSEK/VDX
 
Get GUI Based OIL Builder at SourceForge.net. Fast, secure and Free Open Source software downloads
 
Support This Project
 
 
Valid XHTML 1.0 Transitional
 
Valid CSS!
  • 搭建编译环境
SVN
如果您没有安装SVN,请执行如下命令:
sudo apt-get install subversion
GTK+开发库
如果您没有安装GTK+开发库文件,请执行如下命令:
sudo apt-get install libgtk2.0-dev
GCC
如果您没有安装GCC,请执行如下命令:
sudo apt-get install gcc
Autotools
sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install libtool
 
首先请到http://www.wxwidgets.org下载最新版本的wxWidgets,然后执行如下命令:
mkdir ~/source
cd ~/source
tar -xvjf ~/download/wxWidgets-2.8.10.tar.bz2
cd wxWidgets-2.8.10
mkdir compile
cd compile
../configure --prefix=/opt/wxWidgets --enable-unicode --disable-shared
make
make install
如果您不愿意自己编译安装wxWidgets,您也可以通过wxWidgets官方网站提供的方式获取编译好的开发包,请点击这里查看详情。
 
  • 通过SVN获取GOB源代码
cd ~/source
svn co https://gobx.svn.sourceforge.net/svnroot/gobx/trunk gobx
 
  • 编译GOB
如果您是按照这里的方式自己编译安装了wxWidgets,那么请参考如下命令进行编译:
cd ~/source/gobx/build
autoreconf -i -s -f
mkdir compile
cd compile
../configure --prefix=/opt/gobx --with-wxdir=/opt/wxWidgets/bin
make
make install
如果您安装的是官方发布的wxWidgets开发包,那么请参考如下命令进行编译(区别在于--with-wxdir取不同的路径):
cd ~/source/gobx/build
autoreconf -i -s -f
mkdir compile
cd compile
../configure --prefix=/opt/gobx --with-wxdir=/usr/bin
make
make install
 
     
Copyright©2008-2009 Sam Wang. All rights reserved.