Google search produced this SCons from Tigris. I downloaded the version 1.0.1 and try to make a working instance of it.
I downloaded the zip from here, and the installation is straightforward if you already have a Python 2.5.2 installation.
python setup.py install
Voila. It works!
I ran the sample on my Windows machine, create a hello.c code.
int main() {
printf("Hello, world!");
}
Make a SConstruct file containing:
Program('hello.c')
It works as advertised! It invoked the Microsoft Visual C++ Express 8.0 on my machine.
Apart of it, it also produce a byproduct file: .sconsign.dblite of size less than 2k. I guess this is some kind of checksum to check whether the latest build is still up to date.
I will try it again in my VirtualBox Ubuntu machine.
No comments:
Post a Comment