unicorn/config.mk

31 lines
1008 B
Makefile
Raw Permalink Normal View History

2015-08-21 10:04:50 +03:00
# Unicorn Emulator Engine
# By Nguyen Anh Quynh, 2015
# This file contains all customized compile options for Unicorn emulator.
# Consult docs/COMPILE.md & docs/README.md for more details.
2015-08-21 10:04:50 +03:00
################################################################################
# Compile with debug info when you want to debug code.
# Change this to 'no' for release edition.
UNICORN_DEBUG ?= yes
################################################################################
# Specify which archs you want to compile in. By default, we build all archs.
2020-05-11 23:09:08 +03:00
UNICORN_ARCHS ?= x86 m68k arm aarch64 mips sparc ppc
2015-08-21 10:04:50 +03:00
################################################################################
# Change 'UNICORN_STATIC = yes' to 'UNICORN_STATIC = no' to avoid building
# a static library.
UNICORN_STATIC ?= yes
################################################################################
# Change 'UNICORN_SHARED = yes' to 'UNICORN_SHARED = no' to avoid building
# a shared library.
UNICORN_SHARED ?= yes