SConstruct (12047:8b269268312c) SConstruct (13391:f298f7d04903)
1#!python
2
3# Copyright (c) 2016, Dresden University of Technology (TU Dresden)
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met:

--- 37 unchanged lines hidden (view full) ---

46
47#Make the gem5 root available in SConscripts
48env['GEM5_ROOT'] = gem5_root
49
50shlibsuffix = env['SHLIBSUFFIX']
51
52# add include dirs
53env.Append(CPPPATH=[gem5_root + '/build/' + gem5_arch,
1#!python
2
3# Copyright (c) 2016, Dresden University of Technology (TU Dresden)
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met:

--- 37 unchanged lines hidden (view full) ---

46
47#Make the gem5 root available in SConscripts
48env['GEM5_ROOT'] = gem5_root
49
50shlibsuffix = env['SHLIBSUFFIX']
51
52# add include dirs
53env.Append(CPPPATH=[gem5_root + '/build/' + gem5_arch,
54 gem5_root + '/util/systemc',
54 gem5_root + '/util/systemc/gem5_within_systemc',
55 gem5_root + '/ext/systemc/src',
56 '#src',
57 '#examples/common',
58 ])
59
60env.Append(CXXFLAGS=['-std=c++11',
61 '-DSC_INCLUDE_DYNAMIC_PROCESSES',
62 '-DTRACING_ON',

--- 39 unchanged lines hidden ---
55 gem5_root + '/ext/systemc/src',
56 '#src',
57 '#examples/common',
58 ])
59
60env.Append(CXXFLAGS=['-std=c++11',
61 '-DSC_INCLUDE_DYNAMIC_PROCESSES',
62 '-DTRACING_ON',

--- 39 unchanged lines hidden ---