SConscript revision 10857:d2d5212578db
111308Santhony.gutierrez@amd.com# -*- mode:python -*-
211308Santhony.gutierrez@amd.com
311308Santhony.gutierrez@amd.com# Copyright (c) 2015 ARM Limited
411308Santhony.gutierrez@amd.com# All rights reserved.
511308Santhony.gutierrez@amd.com#
611308Santhony.gutierrez@amd.com# The license below extends only to copyright in the software and shall
711308Santhony.gutierrez@amd.com# not be construed as granting a license to any other intellectual
811308Santhony.gutierrez@amd.com# property including but not limited to intellectual property relating
911308Santhony.gutierrez@amd.com# to a hardware implementation of the functionality of the software
1011308Santhony.gutierrez@amd.com# licensed hereunder.  You may use the software subject to the license
1111308Santhony.gutierrez@amd.com# terms below provided that you ensure that this notice is replicated
1211308Santhony.gutierrez@amd.com# unmodified and in its entirety in all distributions of the software,
1311308Santhony.gutierrez@amd.com# modified or unmodified, in source code or in binary form.
1411308Santhony.gutierrez@amd.com#
1511308Santhony.gutierrez@amd.com# Redistribution and use in source and binary forms, with or without
1611308Santhony.gutierrez@amd.com# modification, are permitted provided that the following conditions are
1711308Santhony.gutierrez@amd.com# met: redistributions of source code must retain the above copyright
1811308Santhony.gutierrez@amd.com# notice, this list of conditions and the following disclaimer;
1911308Santhony.gutierrez@amd.com# redistributions in binary form must reproduce the above copyright
2011308Santhony.gutierrez@amd.com# notice, this list of conditions and the following disclaimer in the
2111308Santhony.gutierrez@amd.com# documentation and/or other materials provided with the distribution;
2211308Santhony.gutierrez@amd.com# neither the name of the copyright holders nor the names of its
2311308Santhony.gutierrez@amd.com# contributors may be used to endorse or promote products derived from
2411308Santhony.gutierrez@amd.com# this software without specific prior written permission.
2511308Santhony.gutierrez@amd.com#
2611308Santhony.gutierrez@amd.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2711308Santhony.gutierrez@amd.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2811308Santhony.gutierrez@amd.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2911308Santhony.gutierrez@amd.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
3011308Santhony.gutierrez@amd.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3111308Santhony.gutierrez@amd.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3211308Santhony.gutierrez@amd.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3311308Santhony.gutierrez@amd.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3411308Santhony.gutierrez@amd.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3511308Santhony.gutierrez@amd.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3611308Santhony.gutierrez@amd.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3711308Santhony.gutierrez@amd.com#
3811308Santhony.gutierrez@amd.com# Authors: Andreas Sandberg
3911308Santhony.gutierrez@amd.com
4011308Santhony.gutierrez@amd.comImport('*')
4111308Santhony.gutierrez@amd.com
4211308Santhony.gutierrez@amd.comif not (env['USE_KVM'] and env['TARGET_ISA'] == 'arm'):
4311308Santhony.gutierrez@amd.com    Return()
4411308Santhony.gutierrez@amd.com
4511308Santhony.gutierrez@amd.comimport platform
4611308Santhony.gutierrez@amd.comhost_isa = platform.machine()
4711308Santhony.gutierrez@amd.com
4811308Santhony.gutierrez@amd.comif host_isa == "armv7l":
4911308Santhony.gutierrez@amd.com    SimObject('ArmKvmCPU.py')
5011308Santhony.gutierrez@amd.com    Source('arm_cpu.cc')
5111308Santhony.gutierrez@amd.com