2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00
This commit is contained in:
Thomas Nagy 2015-06-21 22:43:19 +02:00
parent 1ee400aca5
commit f7b4940158
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
4 changed files with 4 additions and 4 deletions

View File

@ -11,6 +11,6 @@ Waf is a Python-based framework for configuring, compiling and installing applic
Waf is used in particular by innovative companies such as [Avalanche Studios](http://www.avalanchestudios.se) and by open-source projects such as [the Samba project](https://www.samba.org/). Learn more about Waf by reading [The Waf Book](https://waf.io/book/).
For researchers and build system writers, Waf also provides a framework for creating [custom build systems](http://code.google.com/p/waf/source/browse/build_system_kit/) and [package distribution systems](http://code.google.com/p/waf/source/browse/playground/distnet/README.rst).
For researchers and build system writers, Waf also provides a framework for creating [custom build systems](https://github.com/waf-project/waf/tree/master/build_system_kit) and [package distribution systems](https://github.com/waf-project/waf/tree/master/playground/distnet/README.rst).
Download the project from our page on [waf.io](https://waf.io/) or from the mirror on [freehackers.org](http://www.freehackers.org/~tnagy/release/).

View File

@ -13,7 +13,7 @@ def configure(conf):
conf.fatal('this example is for 64-bit systems only')
def build(bld):
# http://docs.waf.googlecode.com/git/apidocs_16/tools/asm.html
# https://waf.io/apidocs/tools/asm.html
bld.program(
source = 'main.c test.S',
target = 'asmtest',

View File

@ -348,7 +348,7 @@ copyright = u'2005-2015, Thomas Nagy'
# built documents.
#
# The short X.Y version.
#version = '1.8.9'
#version = '1.8.10'
# The full version, including alpha/beta/rc tags.
#release = version
#

View File

@ -64,7 +64,7 @@ def check_same_targets(self):
if not dupe:
for (k, v) in uids.items():
if len(v) > 1:
Logs.error('* Several tasks use the same identifier. Please check the information on\n http://docs.waf.googlecode.com/git/apidocs_16/Task.html#waflib.Task.Task.uid')
Logs.error('* Several tasks use the same identifier. Please check the information on\n https://waf.io/apidocs/Task.html?highlight=uid#waflib.Task.Task.uid')
for tsk in v:
Logs.error(' - object %r (%r) defined in %r' % (tsk.__class__.__name__, tsk, tsk.generator))