[Update] Epsilon 15.3.1

This commit is contained in:
Joachim LF
2021-01-21 17:27:39 +01:00
700 changed files with 15118 additions and 7297 deletions

View File

@@ -7,8 +7,9 @@ HOME_DISPLAY_EXTERNALS ?= 1
EPSILON_VERSION ?= 14.4.1
OMEGA_VERSION ?= 1.21.0
# OMEGA_USERNAME ?= N/A
EPSILON_APPS ?= calculation rpn graph code statistics probability solver atom sequence regression settings external
EPSILON_I18N ?= en fr nl pt it de es hu
EPSILON_APPS ?= calculation rpn graph code statistics probability solver atom sequence regression settings
EPSILON_I18N ?= en
EPSILON_COUNTRIES ?= WW CA DE ES FR GB IT NL PT US
EPSILON_GETOPT ?= 0
EPSILON_TELEMETRY ?= 0
ESCHER_LOG_EVENTS_BINARY ?= 0

5
build/scenario/afl.py Normal file → Executable file
View File

@@ -1,7 +1,8 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import subprocess
import multiprocessing
NUMBER_OF_FUZZERS=8
NUMBER_OF_FUZZERS=multiprocessing.cpu_count()
def afl_command(name):
master_option = "-M" if name.startswith("master") else "-S"

View File

@@ -0,0 +1,4 @@
.PHONY: %_run
%_run: $(BUILD_DIR)/%.$(EXE)
$(call rule_label,EXE)
$(Q) ./$^

View File

@@ -0,0 +1,4 @@
.PHONY: %_run
%_run: $(BUILD_DIR)/%.app
$(call rule_label,OPEN)
$(Q) open $^

View File

@@ -0,0 +1,4 @@
PHONY: %_run
t %_run: $(BUILD_DIR)/%.$(EXE)
$(call rule_label,EXE)
$(Q) ./$^

View File

@@ -6,3 +6,7 @@ LD = afl-clang++
ifeq ($(ASAN),1)
export AFL_USE_ASAN = 1
endif
# Prevent NDEBUG from being defined since we will always want assertions to run
# when the code is being fuzzed
SFLAGS := $(filter-out -DNDEBUG,$(SFLAGS))