You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2025. It is now read-only.
Thank you for your outstanding work and making it open source. However, when I try to run bazel build //:Fuzzer in evaluation/junrar-7.4.1/harness_all_rnd1seed , I encounter the following error message:
bazel build //:Fuzzer
INFO: Analyzed target //:Fuzzer (1 packages loaded, 3 targets configured).
INFO: Found 1 target...
ERROR: fuzzprojects/Rubick/rubick/evaluation/junrar-7.4.1/harness_all_rnd1seed/BUILD:3:12: Building Fuzzer.jar (2 source files) failed: (Exit 1): java failed: error executing
command external/remotejdk11_linux/bin/java -XX:+UseParallelOldGC -XX:-CompactStrings '--patch-module=java.compiler=external/remote_java_tools_linux/java_tools/java_compiler.jar' ... (re
maining 15 argument(s) skipped)
src/main/java/com/fuzz/ExpCollector.java:47: error: package com.code_intelligence.jazzer.api does not exist
public static byte[] recordAndPrepareInputs(long _cfNO, long _dfNO, com.code_intelligence.jazzer.api.FuzzedDataProvider data) {
^
src/main/java/com/fuzz/ExpCollector.java:102: error: package com.code_intelligence.jazzer.api does not exist
public static byte[] recordAndPrepareInputsNotRubick(com.code_intelligence.jazzer.api.FuzzedDataProvider data) {
^
src/main/java/com/fuzz/Fuzzer.java:13: error: package ahg.harness does not exist
import ahg.harness.Template;
^
src/main/java/com/fuzz/Fuzzer.java:14: error: package ahg.harness.cfg.nfa does not exist
import ahg.harness.cfg.nfa.iNFA;
^
src/main/java/com/fuzz/Fuzzer.java:15: error: package ahg.harness.cfg.api does not exist
import ahg.harness.cfg.api.iAPIFunc;
^
src/main/java/com/fuzz/Fuzzer.java:16: error: package ahg.harness.cfg.alphabet does not exist
import ahg.harness.cfg.alphabet.iAlphabet;
^
src/main/java/com/fuzz/Fuzzer.java:18: error: package ahg.harness does not exist
import ahg.harness.Result;
^
src/main/java/com/fuzz/Fuzzer.java:20: error: package ahg.harness.exception does not exist
import ahg.harness.exception.SoftException;
^
src/main/java/com/fuzz/Fuzzer.java:21: error: package ahg.harness.exception does not exist
import ahg.harness.exception.HarnessException;
^
src/main/java/com/fuzz/Fuzzer.java:22: error: package ahg.harness.exception does not exist
import ahg.harness.exception.NoCondTriggerredException;
.....
Target //:Fuzzer failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 2.245s, Critical Path: 2.09s
INFO: 2 processes: 2 internal.
FAILED: Build did NOT complete successfully
It appears that this is because the dependency for evaluation/junrar-7.4.1/harness_all_rnd1seed/src/main/java/com/fuzz/Fuzzer.java is not imported correctly.Do you know how to solve it?
Thank you for your outstanding work and making it open source. However, when I try to run
bazel build //:Fuzzerinevaluation/junrar-7.4.1/harness_all_rnd1seed, I encounter the following error message:It appears that this is because the dependency for evaluation/junrar-7.4.1/harness_all_rnd1seed/src/main/java/com/fuzz/Fuzzer.java is not imported correctly.Do you know how to solve it?