Edit online

基础用法

SCons 使用 SConscript 和 SConstruct 文件来组织源码结构,通常来说一个项目只有一个 SConstruct,但是会有多个 SConscript。

原则上每个存放有源代码的子目录下都会放置一个 SConscript,但譬如 BSP 的驱动开发等会集合所有的驱动源码到一个 SConscript 中。

一些常用的 SConscript 方法有:
  1. Program:用于生成可执行文件。
    Program('hello.c')          编译 c 可执行文件,根据系统自动生成(hello.exe on Windows; hello on POSIX)
    Program('hello','hello.c')  指定 Output 文件名(hello.exe on Windows; hello on POSIX)
    Program(['hello.c', 'file1.c', 'file2.c']) 编译多个文件,Output 文件名以第一个文件命名
    Program(source = "hello.c",target = "hello")
    Program(target = "hello" , source = "hello.c")
    Program('hello', Split('hello.c file1.c file2.c')) 编译多个文件
    
    Program(Glob("*.c"))
    src = ["hello.c","foo.c"];
    Program(src)
  2. Object:用于生成目标文件。
    Object('hello.c') 编译 c 目标文件,根据系统自动生成(hello.obj on Windows; hello.o on POSIX)
  3. Library:用于生成静态/动态库文件。
    Library('foo', ['f1.c', 'f2.c', 'f3.c']) 编译 library
    SharedLibrary('foo', ['f1.c', 'f2.c', 'f3.c']) 编译 shared library
    StaticLibrary('bar', ['f4.c', 'f5.c', 'f6.c']) 编译 static library
    
    库的使用:
    
    Program('prog.c', LIBS=['foo', 'bar'], LIBPATH='.') 连接库,不需加后缀或是前缀
  4. Depends:用于明确依赖关系。
    Depends(hello, 'other_file')  //hello 依赖于 other_file