Skip to content

Commit

Permalink
Merge branch 'internal-dev' into 'master'
Browse files Browse the repository at this point in the history
Public release

See merge request github/Killerbeez!35
  • Loading branch information
adamgrimm99 committed Jun 21, 2018
2 parents 6b89c86 + 5ab485a commit c2913a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ endif (WIN32)
include_directories (${CMAKE_SOURCE_DIR}/../killerbeez-utils/jansson/)
include_directories (${CMAKE_SOURCE_DIR}/../killerbeez-utils/utils/)

add_subdirectory(${CMAKE_SOURCE_DIR}/../killerbeez-mutators/ ${CMAKE_BINARY_DIR}/../killerbeez-mutators/)
# compile mutators, which will compile utils
add_subdirectory(${CMAKE_SOURCE_DIR}/../killerbeez-mutators/ ${CMAKE_BINARY_DIR}/killerbeez-mutators/)

add_subdirectory(driver)
add_subdirectory(fuzzer)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ To build Killerbeez on Windows you will need Microsoft Visual Studio 2017, Cygwi

3. Create a working directory to store all of the Killerbeez components, for example `WORKDIR=C:\killerbeez`

4. Build [Radamsa](https://github.com/aoh/radamsa).
4. Build [Radamsa](https://gitlab.com/akihe/radamsa).
+ Clone the Radamsa repository into %WORKDIR% from a Cygwin terminal and build:

```
cd /cydrive/c/killerbeez
git clone https://github.com/aoh/radamsa.git
git clone https://gitlab.com/akihe/radamsa.git
cd radamsa
make
```
Expand Down
6 changes: 1 addition & 5 deletions tools/release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ REM : cd killerbeez-mutators; ..\Killerbeez\tools\release
REM : cd killerbeez-utils; ..\Killerbeez\tools\release

if "%RADAMSA_URL%" == "" (
set RADAMSA_URL=https://github.com/aoh/radamsa.git
set RADAMSA_URL=https://gitlab.com/akihe/radamsa.git
)
if "%KILLERBEEZ_URL%" == "" (
set KILLERBEEZ_URL=https://github.com/grimm-co/Killerbeez.git
Expand Down Expand Up @@ -40,8 +40,6 @@ if not exist dynamorio (

call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86

call :compile killerbeez-utils || exit /b 1
call :compile killerbeez-mutators || exit /b 1
call :compile Killerbeez || exit /b 1

set oldpath=%path%
Expand All @@ -54,8 +52,6 @@ call :package X86

call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64

call :compile killerbeez-utils || exit /b 1
call :compile killerbeez-mutators || exit /b 1
call :compile Killerbeez || exit /b 1

set oldpath=%path%
Expand Down

0 comments on commit c2913a8

Please sign in to comment.