版本4和5间的区别
于2010-01-31 19:43:31修订的的版本4
大小: 549
编辑: 116
备注:
于2010-01-31 19:58:23修订的的版本5
大小: 911
编辑: 116
备注:
删除的内容标记成这样。 加入的内容标记成这样。
行号 22: 行号 22:

编译为目标文件,然后链接成可执行程序:
{{{#!python
objs = Object(["hello.cc", "main.cc"])
Program(objs)
}}}

编译为静态库文件:
{{{#!python
Library("hello.cc")
}}}或者{{{#!python
StaticLibrary("hello.cc")
}}}

链接库文件到程序
{{{#!python
lib = StaticLibrary("hello.cc")
Program("main.cc", LIBS=lib)
}}}

命令

在程序目录下创建一个SConstruct文件,写上脚本,然后执行

% scons

就可以进行编译了。执行

% scons -c

清除生成的文件。如果要在编译时,少输出一些调试信息,可以用

% scons -Q

如果要在一个子目录中编译,可以用

% scons -u

脚本

最简单的脚本,编译main.cc为可执行程序:

   1 Program("main.cc")

编译多个程序为一个可执行程序:

   1 Program(["main.cc", "hello.cc"])

编译为目标文件,然后链接成可执行程序:

   1 objs = Object(["hello.cc", "main.cc"])
   2 Program(objs)

编译为静态库文件:

   1 Library("hello.cc")

或者

   1 StaticLibrary("hello.cc")

链接库文件到程序

   1 lib = StaticLibrary("hello.cc")
   2 Program("main.cc", LIBS=lib)
ch3n2k.com | Copyright (c) 2004-2020 czk.