* fix finding python path which only has python3.
* read deps from files of qemu, fixed library deps.
* cleanup code of get objs, restore old qemu/Makefile.
* update some target name, remove dup empty line.
* update .PHONY targets.
* compatible with mingw-gcc compler.
* move part of CC to head.
* restore part of CC. use uname -s to detect mingw.
* fix finding python path which only has python3.
* read deps from files of qemu, fixed library deps.
* cleanup code of get objs, restore old qemu/Makefile.
* update some target name, remove dup empty line.
* update .PHONY targets.
* compatible with mingw-gcc compler.
* move part of CC to head.
* fix finding python path which only has python3.
* read deps from files of qemu, fixed library deps.
* cleanup code of get objs, restore old qemu/Makefile.
* update some target name, remove dup empty line.
* update .PHONY targets.
Adding @rpath to the install name to make it possible to link against
the library without modifying it with install_name_tool. Copying both
the versioned and unversioned dylibs simplifies linking.
* fix msys2 builds
* move to travis xenial
now the default
* add i386 cmocka
* move to only different cmocka on 32 bit build
* minimize packages on non x86
* Integration with oss-fuzz
* Use CFLAGS even for linking
as for fuzzing with asan
* Do not abort on uc_emu_start error
* Redirect fuzz output somewhere else than stdout
* Use uc_open for every fuzz instance
* Avoids timeouts from infinite loops
Limiting the number of instructions
* Moving fuzz to tests directory
* Haiku: fix broken gcc strong stack protector
* qemu: Backport minor Haiku fix
We need to push this fix upstream to qemu. If we don't
get it upstreamed, i'll circle back and patch it if
Unicorn updates its qemu version.
Providing a default level of parallelism is perfectly fine, but it
should also be possible to set higher or lower levels of parallelism
easily. This is particularly beneficial for people packaging the
software for Linux distributions.
- 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