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

ubutun 14.04 从源代码编译 qucs

郎刚捷
2023-12-01

1、下载源代码

$ git clone git://git.code.sf.net/p/qucs/git qucs-git

2、安装编译的需要的软件

apt-get install libqt4-dev

apt-get install libtool

apt-get install automake

3、编译软件(未翻译照抄)

Build the Qucs GUI applications:
$ cd ~/git/qucs-git/qucs
$ sh autogen.sh
$ ./configure --enable-maintainer-mode --prefix=/installation/path
$ make
$ make install
Build the Qucs core:
$ cd ~/git/qucs-git/qucs-core
$ sh bootstrap.sh
$ ./configure --enable-maintainer-mode --prefix=/installation/path
$ make
$ make install
Build the Qucs documentation:
$cd ~/git/qucs-git/qucs-doc/
$sh autogen.sh
$ ./configure --enable-maintainer-mode --prefix=/installation/path
$make
$make install

 类似资料: