14 |
|
|
15 |
esysroot = Dir('#../../..') |
esysroot = Dir('#../../..') |
16 |
usegcc = 0 |
usegcc = 0 |
17 |
|
options = None |
18 |
|
|
19 |
# |
# |
20 |
# retreive command-line arguments if any |
# retreive command-line arguments if any |
22 |
if ARGUMENTS.get('usegcc',0): |
if ARGUMENTS.get('usegcc',0): |
23 |
usegcc = 1 |
usegcc = 1 |
24 |
|
|
25 |
|
if ARGUMENTS.get('options',0): |
26 |
|
options = ARGUMENTS.get('options',0) |
27 |
|
|
28 |
# |
# |
29 |
# determine platform |
# determine platform |
30 |
|
|
48 |
if usegcc==1: |
if usegcc==1: |
49 |
from gcc_options import * |
from gcc_options import * |
50 |
|
|
51 |
|
if options!=None: |
52 |
|
exec "from " + options + " import *" |
53 |
|
|
54 |
cxx_flags=cxx_flags_debug |
cxx_flags=cxx_flags_debug |
55 |
|
|
56 |
# |
# |