SConscript (10023:91faf6649de0) | SConscript (11247:76f75db08e09) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2013 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 29 unchanged lines hidden (view full) --- 38# Authors: Matt Horsnell 39 40Import('*') 41 42if 'O3CPU' in env['CPU_MODELS']: 43 SimObject('SimpleTrace.py') 44 Source('simple_trace.cc') 45 DebugFlag('SimpleTrace') | 1# -*- mode:python -*- 2 3# Copyright (c) 2013 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 29 unchanged lines hidden (view full) --- 38# Authors: Matt Horsnell 39 40Import('*') 41 42if 'O3CPU' in env['CPU_MODELS']: 43 SimObject('SimpleTrace.py') 44 Source('simple_trace.cc') 45 DebugFlag('SimpleTrace') |
46 47 if env['HAVE_PROTOBUF']: 48 SimObject('ElasticTrace.py') 49 Source('elastic_trace.cc') 50 DebugFlag('ElasticTrace') |
|