📄 read_me.txt
字号:
# Linux Platform Compilation# ===========================## Using Boinc do the following steps:# 1. run make in aisystem/src/linux folder to compile the Makefile # a) the current Makefile includes the simulation code# b) the Makefile_boinc includes the Boinc code only without the simulation code# Without using BOINC do the following steps:
# 1. install sqlite first
# download sqlite-3.5.2.tar.gz archive and unpack it in /home/ovi/source
# create bld folder, configure, make, make install
# 2. copy the following files from /aisystem/src/linux/autogen to aisystem/src folder
configure.in
Makefile.am
# 3. run the following commands to generate the configure and makefile files in aisystem/src folder:
aclocal
autoconf
autoheader
automake --add-missing --copy
./configure
make
# 4. if the sqlite amlgamation file is being used, edit Makefile.am to contain:
# aisystem_SOURCES = ... sqlite3.c ...
# aisystem_LDADD = -ldl -lpthread -lm
# the following files should exist in /src folder:
# sqlite3.c and sqlite3.h
# if the sqlite library is being used, edit Makefile.am to contain:
# aisystem_SOURCES = ...... (no sqlite3.c)
# aisystem_LDADD = -lsqlite3 -lm
# the following file should exist in /src folder:
# sqlite3.h
# if the binary program is complaining about the sqlite3 library, check the current installed version
# and remove it if it is older and also use:
# export LD_LIBRARY_PATH=/usr/local/lib
# If the application uses graphics use the Makefile_graphics file instead of Makefile. # Makefile_x contains the X libraries.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -