Parent Directory
|
Revision Log
pass in cc/cxx settings from config file
1 | jgs | 179 | Import('*') |
2 | |||
3 | import os | ||
4 | jgs | 190 | import string |
5 | jgs | 179 | |
6 | jgs | 190 | mmio_path = str(esysroot) + '/tools/mmio/inc' |
7 | jgs | 179 | |
8 | jgs | 190 | cpp_path = [mmio_path] |
9 | |||
10 | jgs | 179 | lib = 'mmio' |
11 | sources = ['mmio.c'] | ||
12 | |||
13 | mmio_env = Environment(ENV = os.environ) | ||
14 | |||
15 | jgs | 223 | mmio_env.Replace(CC = cc) |
16 | jgs | 179 | mmio_env.Replace(CCFLAGS = cc_flags) |
17 | mmio_env.Replace(CPPPATH = cpp_path) | ||
18 | |||
19 | mmio_lib = mmio_env.StaticLibrary(lib, sources) | ||
20 | mmio_env.Install(libdir, mmio_lib) |
ViewVC Help | |
Powered by ViewVC 1.1.26 |