Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnls committed Apr 24, 2023
2 parents 94c2cd3 + 6c74e67 commit f77cc66
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ pkg_tar(
mode = "0777",
remap_paths = {
"src/main/java/com/code_intelligence/jazzer/jazzer_standalone_deploy.jar": "jazzer_standalone.jar",
"launcher/jazzer": "jazzer",
},
} | select({
"@platforms//os:windows": {"launcher/jazzer": "jazzer.exe"},
"//conditions:default": {"launcher/jazzer": "jazzer"},
}),
strip_prefix = select({
"@platforms//os:windows": ".\\",
"//conditions:default": "./",
Expand Down
2 changes: 1 addition & 1 deletion launcher/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cc_binary(
)

# On macOS, builds a binary that supports both x86_64 and arm64.
# On all other platforms, is just symlinks the input binary.
# On all other platforms, it just symlinks the input binary.
universal_binary(
name = "jazzer",
binary = ":jazzer_single_arch",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include "coverage_tracker.h"

#include <jni.h>
#include <stdint.h>

#include <iostream>
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#pragma once

#include <jni.h>
#include <stdint.h>

#include <string>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <dlfcn.h>
#endif
#include <jni.h>
#include <stdint.h>

#include <iostream>
#include <limits>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

#pragma once

#include <jni.h>

namespace jazzer {
/*
* Print the stack traces of all active JVM threads.
Expand Down

0 comments on commit f77cc66

Please sign in to comment.