SConscript (10857:d2d5212578db) | SConscript (10859:0ba6f47025d1) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2015 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 --- 31 unchanged lines hidden (view full) --- 40Import('*') 41 42if not (env['USE_KVM'] and env['TARGET_ISA'] == 'arm'): 43 Return() 44 45import platform 46host_isa = platform.machine() 47 | 1# -*- mode:python -*- 2 3# Copyright (c) 2015 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 --- 31 unchanged lines hidden (view full) --- 40Import('*') 41 42if not (env['USE_KVM'] and env['TARGET_ISA'] == 'arm'): 43 Return() 44 45import platform 46host_isa = platform.machine() 47 |
48SimObject('KvmGic.py') 49Source('gic.cc') 50 |
|
48if host_isa == "armv7l": 49 SimObject('ArmKvmCPU.py') 50 Source('arm_cpu.cc') | 51if host_isa == "armv7l": 52 SimObject('ArmKvmCPU.py') 53 Source('arm_cpu.cc') |