3 # Thomas Nagy, 2005-2015
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
10 1. Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
13 2. Redistributions in binary form must reproduce the above copyright
14 notice, this list of conditions and the following disclaimer in the
15 documentation and/or other materials provided with the distribution.
17 3. The name of the author may not be used to endorse or promote products
18 derived from this software without specific prior written permission.
20 THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
21 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
33 import os
, sys
, inspect
49 if sys
.hexversion
>0x300000f:
55 print(('\033[91mError: %s\033[0m' % m
))
58 def unpack_wafdir(dir, src
):
60 c
= 'corrupt archive (%d)'
63 if not line
: err('run waf-light from a folder containing waflib')
64 if line
== b('#==>\n'):
66 if not txt
: err(c
% 1)
67 if f
.readline() != b('#<==\n'): err(c
% 2)
69 if not txt
: err(c
% 3)
70 txt
= txt
[1:-1].replace(b(C1
), b('\n')).replace(b(C2
), b('\r')).replace(b(C3
), b('\x00'))
72 import shutil
, tarfile
73 try: shutil
.rmtree(dir)
76 for x
in ('Tools', 'extras'):
77 os
.makedirs(join(dir, 'waflib', x
))
79 err("Cannot unpack waf lib into %s\nMove waf in a writable directory" % dir)
91 os
.system('bunzip2 t.bz2')
96 try: shutil
.rmtree(dir)
98 err("Waf cannot be unpacked, check that bzip2 support is present")
101 for x
in t
: t
.extract(x
)
105 for x
in ('Tools', 'extras'):
106 os
.chmod(join('waflib',x
), 493)
108 if sys
.hexversion
<0x300000f:
109 sys
.path
= [join(dir, 'waflib')] + sys
.path
116 try: dir = unicode(dir, 'mbcs')
119 from ctypes
import windll
120 windll
.kernel32
.SetFileAttributesW(dir, 2)
126 os
.stat(join(dir, 'waflib'))
127 return os
.path
.abspath(dir)
132 return os
.path
.abspath(os
.path
.join(os
.path
.dirname(__file__
), '../../third_party/waf'))
135 sys
.path
.insert(0, wafdir
)
137 if __name__
== '__main__':
139 # TODO: remove these when possible
140 from waflib
.extras
import compat15
143 from waflib
.Tools
import ccroot
, c
, ar
, compiler_c
, gcc
144 sys
.modules
['cc'] = c
145 sys
.modules
['ccroot'] = ccroot
146 sys
.modules
['ar'] = ar
147 sys
.modules
['compiler_cc'] = compiler_c
148 sys
.modules
['gcc'] = gcc
150 from waflib
import Options
151 Options
.lockfile
= os
.environ
.get('WAFLOCK', '.lock-wscript')
152 if os
.path
.isfile(Options
.lockfile
) and os
.stat(Options
.lockfile
).st_size
== 0:
153 os
.environ
['NOCLIMB'] = "1"
154 # there is a single top-level, but libraries must build independently
155 os
.environ
['NO_LOCK_IN_TOP'] = "1"
157 from waflib
import Task
160 Task
.classes
['cc_link'] = o
162 from waflib
import Scripting
163 Scripting
.waf_entry_point(cwd
, VERSION
, wafdir
)