2015-08-21 07:04:50 +00:00
|
|
|
# Unicorn Engine
|
|
|
|
# By Nguyen Anh Quynh <aquynh@gmail.com>, 2015
|
|
|
|
|
|
|
|
include ../config.mk
|
|
|
|
|
Unit testing in CI (#651)
- in appveyor, install clang and cmake in cygwin, enable package upgrades, and build cmocka and enable testing for gcc only
- in `gitignore`, ignore generated cmocka folder
- in travis, use brew in osx to install cmocka, and enable testing for gcc and clang on os x and linux
- in `Makefile`, change to use `uname -s` to determine os type
- make `install-cmocka-linux.sh`, a simple shell script to download and install cmocka on linux
- in `bindings/Makefile`, enable `make -c` to call subdirectory makefiles instead of `cd [dir] && make` and include environment variables for runtime access to generated libraries
- in `samples/Makefile`, change to use `uname -s` to determine os type, remove `clean_bins` from `all` command, and include `Werror` for compile strictness
- in `tests/unit/Makefile`, add `cflags` for compile time access to cmocka headers and library, include execute vars for runtime access to cmocka and unicorn libs
- in `tests/unit/test_tb_x86.c`, comment out assert that would not compile
2016-10-21 16:21:10 +00:00
|
|
|
UNAME_S := $(shell uname -s)
|
2015-08-21 07:04:50 +00:00
|
|
|
|
|
|
|
# Find GLIB
|
|
|
|
ifndef GLIB
|
2015-09-04 11:56:35 +00:00
|
|
|
GLIB = $(shell pkg-config --libs glib-2.0)
|
2015-08-21 07:04:50 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Verbose output?
|
|
|
|
V ?= 0
|
|
|
|
|
2016-10-28 23:31:52 +00:00
|
|
|
CFLAGS += -Wall -Werror -I../include
|
|
|
|
LDFLAGS += -L..
|
|
|
|
LDLIBS += -lpthread -lunicorn -lm $(GLIB)
|
2015-08-21 07:04:50 +00:00
|
|
|
|
2016-10-28 23:31:52 +00:00
|
|
|
ifneq ($(CROSS),)
|
2015-08-21 07:04:50 +00:00
|
|
|
CC = $(CROSS)gcc
|
|
|
|
endif
|
|
|
|
|
2016-04-20 22:38:27 +00:00
|
|
|
ifeq ($(UNICORN_ASAN),yes)
|
2016-10-28 23:31:52 +00:00
|
|
|
CC = clang
|
|
|
|
CXX = clang++
|
2016-04-20 22:38:27 +00:00
|
|
|
AR = llvm-ar
|
2016-10-28 23:31:52 +00:00
|
|
|
CFLAGS += -fsanitize=address -fno-omit-frame-pointer
|
2016-04-20 22:38:27 +00:00
|
|
|
endif
|
|
|
|
|
2015-08-21 07:04:50 +00:00
|
|
|
# Cygwin?
|
Unit testing in CI (#651)
- in appveyor, install clang and cmake in cygwin, enable package upgrades, and build cmocka and enable testing for gcc only
- in `gitignore`, ignore generated cmocka folder
- in travis, use brew in osx to install cmocka, and enable testing for gcc and clang on os x and linux
- in `Makefile`, change to use `uname -s` to determine os type
- make `install-cmocka-linux.sh`, a simple shell script to download and install cmocka on linux
- in `bindings/Makefile`, enable `make -c` to call subdirectory makefiles instead of `cd [dir] && make` and include environment variables for runtime access to generated libraries
- in `samples/Makefile`, change to use `uname -s` to determine os type, remove `clean_bins` from `all` command, and include `Werror` for compile strictness
- in `tests/unit/Makefile`, add `cflags` for compile time access to cmocka headers and library, include execute vars for runtime access to cmocka and unicorn libs
- in `tests/unit/test_tb_x86.c`, comment out assert that would not compile
2016-10-21 16:21:10 +00:00
|
|
|
ifneq ($(filter CYGWIN%,$(UNAME_S)),)
|
2015-08-21 07:04:50 +00:00
|
|
|
CFLAGS := $(CFLAGS:-fPIC=)
|
2016-10-28 23:31:52 +00:00
|
|
|
LDLIBS += -lssp
|
2015-08-21 07:04:50 +00:00
|
|
|
# mingw?
|
Unit testing in CI (#651)
- in appveyor, install clang and cmake in cygwin, enable package upgrades, and build cmocka and enable testing for gcc only
- in `gitignore`, ignore generated cmocka folder
- in travis, use brew in osx to install cmocka, and enable testing for gcc and clang on os x and linux
- in `Makefile`, change to use `uname -s` to determine os type
- make `install-cmocka-linux.sh`, a simple shell script to download and install cmocka on linux
- in `bindings/Makefile`, enable `make -c` to call subdirectory makefiles instead of `cd [dir] && make` and include environment variables for runtime access to generated libraries
- in `samples/Makefile`, change to use `uname -s` to determine os type, remove `clean_bins` from `all` command, and include `Werror` for compile strictness
- in `tests/unit/Makefile`, add `cflags` for compile time access to cmocka headers and library, include execute vars for runtime access to cmocka and unicorn libs
- in `tests/unit/test_tb_x86.c`, comment out assert that would not compile
2016-10-21 16:21:10 +00:00
|
|
|
else ifneq ($(filter MINGW%,$(UNAME_S)),)
|
2015-08-21 07:04:50 +00:00
|
|
|
CFLAGS := $(CFLAGS:-fPIC=)
|
|
|
|
endif
|
|
|
|
|
2016-10-28 23:31:52 +00:00
|
|
|
.PHONY: all clean
|
2015-08-21 07:04:50 +00:00
|
|
|
|
2015-08-24 09:48:30 +00:00
|
|
|
UNICORN_ARCHS := $(shell if [ -e ../config.log ]; then cat ../config.log;\
|
2015-08-21 07:04:50 +00:00
|
|
|
else printf "$(UNICORN_ARCHS)"; fi)
|
|
|
|
|
|
|
|
SOURCES =
|
|
|
|
ifneq (,$(findstring arm,$(UNICORN_ARCHS)))
|
|
|
|
SOURCES += sample_arm.c
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring aarch64,$(UNICORN_ARCHS)))
|
|
|
|
SOURCES += sample_arm64.c
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring mips,$(UNICORN_ARCHS)))
|
|
|
|
SOURCES += sample_mips.c
|
|
|
|
endif
|
2016-10-28 23:31:52 +00:00
|
|
|
#ifneq (,$(findstring ppc,$(UNICORN_ARCHS)))
|
2015-08-21 07:04:50 +00:00
|
|
|
#SOURCES += sample_ppc.c
|
2016-10-28 23:31:52 +00:00
|
|
|
#endif
|
2015-08-21 07:04:50 +00:00
|
|
|
ifneq (,$(findstring sparc,$(UNICORN_ARCHS)))
|
|
|
|
SOURCES += sample_sparc.c
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring x86,$(UNICORN_ARCHS)))
|
|
|
|
SOURCES += sample_x86.c
|
|
|
|
SOURCES += shellcode.c
|
2015-09-04 17:27:03 +00:00
|
|
|
SOURCES += mem_apis.c
|
2016-03-24 15:56:13 +00:00
|
|
|
SOURCES += sample_x86_32_gdt_and_seg_regs.c
|
2016-04-05 03:52:26 +00:00
|
|
|
SOURCES += sample_batch_reg.c
|
2015-08-21 07:04:50 +00:00
|
|
|
endif
|
|
|
|
ifneq (,$(findstring m68k,$(UNICORN_ARCHS)))
|
|
|
|
SOURCES += sample_m68k.c
|
|
|
|
endif
|
|
|
|
|
2016-10-28 23:31:52 +00:00
|
|
|
BINS = $(SOURCES:.c=)
|
2015-08-21 07:04:50 +00:00
|
|
|
|
2016-10-28 23:31:52 +00:00
|
|
|
all: $(BINS)
|
2015-08-21 07:04:50 +00:00
|
|
|
|
2016-10-28 23:31:52 +00:00
|
|
|
clean:
|
|
|
|
rm -rf *.o $(BINS)
|