This commit is contained in:
Thomas Nagy 2013-11-09 15:29:22 +01:00
parent 8571c15a1b
commit 603af4ce6a
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,6 @@
NEW IN WAF 1.8.0
----------------
* Do not propagate external static libraries uselib vars #1320
* Prevent external static libraries propagation through uselib vars #1320
* Removed the Waf cache from the task level
* Fix for systems without threading #1323
* LaTeX glossaries #1342

7
DEVEL
View File

@ -1,4 +1,4 @@
Main repository for waf 1.7 on http://waf.googlecode.com/git/
Main repository for waf 1.8 on http://waf.googlecode.com/git/
-------------------------------------------------------------
waflib the core library
@ -29,13 +29,13 @@ Programming details
-------------------
* Do not use x.split("\n") but x.splitlines()
* Do not catch all exceptions unless you have a good reason to do so
* Do not catch all exceptions unless you have a good reason to do so (no "except:")
* File handles are too easy to get wrong, use Node.readf/Node.writef/Utils.readf/Utils.writef
Wiki documentation on http://wiki.waf.googlecode.com/git/
---------------------------------------------------------
...
The wiki documentation is always outdated
Previous branches
-----------------
@ -43,4 +43,3 @@ Previous branches
old svn repository http://waf.googlecode.com/svn/trunk/ (for waf 1.5, read-only and unused)
old branch for waf 1.5 http://waf.googlecode.com/svn/branches/waf-1.5/ (again, read-only and unused)

4
README
View File

@ -1,7 +1,7 @@
WHAT YOU WILL FIND HERE
-----------------------
Waf (1.7)
Waf (1.8)
For the manual: http://docs.waf.googlecode.com/git/book_16/single.html
For the api docs: http://docs.waf.googlecode.com/git/apidocs_16/index.html
@ -27,6 +27,8 @@ $ ./waf-light --tools=compat15 --prelude=$'\tfrom waflib.extras import compat15\
Any kind of initialization is possible, though one may prefer the build system kit (folder build_system_kit):
$ ./waf-light --make-waf --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import compat15\n\tprint("ok")'
Or if you do not want to regenerate the waf file all the time, set the WAFDIR environment variable to the directory containing "waflib".
HOW TO TRY THE EXAMPLES
-----------------------