VirtualBox

source: vbox/trunk/src/VBox/VMM/Config.kmk@ 92154

Last change on this file since 92154 was 91976, checked in by vboxsync, 3 years ago

VMM/Config.kmk: Pick up VBOX_WITH_PGM_NEM_MODE from the build environment to simplify switching back and forth. bugref:10122

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1# $Id: Config.kmk 91976 2021-10-21 17:18:29Z vboxsync $
2## @file
3# kBuild Configuration file for the VMM.
4#
5
6#
7# Copyright (C) 2006-2020 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18VBOX_VMM_CONFIG_KMK_INCLUDED = 1
19
20# Include the top-level configure file.
21ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED
22 include $(PATH_ROOT)/Config.kmk
23endif
24
25#
26# Globals
27#
28
29## DEFS variable that is picked up by all three VMM targets (R0, R3, RC).
30# Can be prepended to by setting it in LocalConfig.kmk
31VMM_COMMON_DEFS := USING_VMM_COMMON_DEFS
32ifdef VBOX_WITH_NESTED_HWVIRT_SVM
33 VMM_COMMON_DEFS += VBOX_WITH_NESTED_HWVIRT_SVM
34endif
35ifdef VBOX_WITH_NESTED_HWVIRT_VMX
36 VMM_COMMON_DEFS += VBOX_WITH_NESTED_HWVIRT_VMX
37endif
38ifdef VBOX_WITH_NESTED_HWVIRT_VMX_EPT
39 VMM_COMMON_DEFS += VBOX_WITH_NESTED_HWVIRT_VMX_EPT
40endif
41ifdef VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM
42 VMM_COMMON_DEFS += VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM
43endif
44# part of global DEFS
45ifdef VBOX_WITH_MULTI_CORE
46 VMM_COMMON_DEFS += VBOX_WITH_MULTI_CORE
47endif
48ifdef VBOX_WITH_R0_LOGGING
49 VMM_COMMON_DEFS += VBOX_WITH_R0_LOGGING
50endif
51ifdef VBOX_WITH_VMMR0_DISABLE_LAPIC_NMI
52 VMM_COMMON_DEFS += VBOX_WITH_VMMR0_DISABLE_LAPIC_NMI
53endif
54ifdef VBOX_WITH_PCI_PASSTHROUGH
55 VMM_COMMON_DEFS += VBOX_WITH_PCI_PASSTHROUGH
56endif
57ifdef VBOX_WITH_DTRACE_RC
58 VMM_COMMON_DEFS += VBOX_WITH_DTRACE_RC
59endif
60ifdef VBOX_WITH_SAFE_STR
61 VMM_COMMON_DEFS += VBOX_WITH_SAFE_STR
62endif
63ifdef VBOX_WITH_64ON32_CMOS_DEBUG
64 VMM_COMMON_DEFS += VBOX_WITH_64ON32_CMOS_DEBUG
65endif
66ifdef VBOXSTRICTRC_STRICT_ENABLED
67 VMM_COMMON_DEFS += VBOXSTRICTRC_STRICT_ENABLED
68endif
69ifdef VBOX_WITH_NATIVE_NEM
70 if1of ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), win.amd64)
71 VMM_COMMON_DEFS += VBOX_WITH_NATIVE_NEM VBOX_WITH_NEM_R0
72 ifdef VBOX_WITH_PGM_NEM_MODE
73 VMM_COMMON_DEFS += VBOX_WITH_PGM_NEM_MODE
74 endif
75 endif
76endif
77if1of ($(KBUILD_TARGET), freebsd linux solaris) # Hosts that implements SUPR0HCPhysToVirt.
78 VMM_COMMON_DEFS += VBOX_WITH_LINEAR_HOST_PHYS_MEM
79endif
80
81# VMM_COMMON_DEFS += VBOX_WITH_NS_ACCOUNTING_STATS
82
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use