experiment/generic-tracing: inline the required configuration

The configuration from weather-monitor was also stripped down to those
values which do not represent the default settings.

Change-Id: I207306e555067156a4ed80edcbcd524137bc8e27
This commit is contained in:
Christian Dietrich
2014-10-21 17:07:57 +02:00
parent cafbe1df75
commit f7e205f01a
2 changed files with 11 additions and 14 deletions

View File

@ -9,6 +9,17 @@ set(MY_CAMPAIGN_SRCS
experiment.cc
)
SET(PLUGINS_ACTIVATED "tracing" CACHE STRING "")
SET(bochs_configure_params "--enable-a20-pin;--enable-x86-64;--enable-cpu-level=6;--enable-ne2000;--enable-acpi;--enable-pci;--enable-usb;--enable-trace-cache;--enable-fast-function-calls;--enable-host-specific-asms;--enable-readline;--enable-clgd54xx;--enable-fpu;--enable-vmx=2;--enable-monitor-mwait;--enable-cdrom;--enable-sb16=linux;--enable-gdb-stub;--with-nogui" CACHE STRING "")
# Build the import and prune trace tools always
SET(BUILD_IMPORT_TRACE ON CACHE BOOL "" FORCE)
SET(BUILD_PRUNE_TRACE ON CACHE BOOL "" FORCE)
SET(BUILD_CONVERT_TRACE ON CACHE BOOL "" FORCE)
SET(BUILD_DUMP_TRACE ON CACHE BOOL "" FORCE)
SET(BUILD_LLVM_DISASSEMBLER ON CACHE BOOL "" FORCE)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
## Build library

View File

@ -5,20 +5,6 @@ configure_file(../instantiate-experiment.ah.in
)
## Configuration
SET(BUILD_BOCHS ON CACHE BOOL "Enable Bochs Support")
SET(BUILD_X86 ON CACHE BOOL "")
SET(CONFIG_BOCHS_NO_ABORT ON CACHE BOOL "")
SET(CONFIG_EVENT_BREAKPOINTS ON CACHE BOOL "")
SET(CONFIG_EVENT_BREAKPOINTS_RANGE ON CACHE BOOL "")
SET(CONFIG_EVENT_INTERRUPT ON CACHE BOOL "")
SET(CONFIG_EVENT_IOPORT ON CACHE BOOL "")
SET(CONFIG_EVENT_MEMREAD ON CACHE BOOL "")
SET(CONFIG_EVENT_MEMWRITE ON CACHE BOOL "")
SET(CONFIG_EVENT_TRAP ON CACHE BOOL "")
SET(CONFIG_SR_RESTORE ON CACHE BOOK "")
SET(CONFIG_SR_SAVE ON CACHE BOOL "")
SET(PLUGINS_ACTIVATED "tracing" CACHE STRING "")
SET(bochs_configure_params "--enable-a20-pin;--enable-x86-64;--enable-cpu-level=6;--enable-ne2000;--enable-acpi;--enable-pci;--enable-usb;--enable-trace-cache;--enable-fast-function-calls;--enable-host-specific-asms;--enable-disasm;--enable-readline;--enable-clgd54xx;--enable-fpu;--enable-vmx=2;--enable-monitor-mwait;--enable-cdrom;--enable-sb16=linux;--enable-gdb-stub;--with-nogui" CACHE STRING "")