mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[Update] Epsilon 15.3.1
This commit is contained in:
@@ -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
5
build/scenario/afl.py
Normal file → Executable 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"
|
||||
|
||||
4
build/targets.simulator.linux.mak
Normal file
4
build/targets.simulator.linux.mak
Normal file
@@ -0,0 +1,4 @@
|
||||
.PHONY: %_run
|
||||
%_run: $(BUILD_DIR)/%.$(EXE)
|
||||
$(call rule_label,EXE)
|
||||
$(Q) ./$^
|
||||
4
build/targets.simulator.macos.mak
Normal file
4
build/targets.simulator.macos.mak
Normal file
@@ -0,0 +1,4 @@
|
||||
.PHONY: %_run
|
||||
%_run: $(BUILD_DIR)/%.app
|
||||
$(call rule_label,OPEN)
|
||||
$(Q) open $^
|
||||
4
build/targets.simulator.windows.mak
Normal file
4
build/targets.simulator.windows.mak
Normal file
@@ -0,0 +1,4 @@
|
||||
PHONY: %_run
|
||||
t %_run: $(BUILD_DIR)/%.$(EXE)
|
||||
$(call rule_label,EXE)
|
||||
$(Q) ./$^
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user