From ed3a34001a0e29d229007abc2cfcdec3453f96e1 Mon Sep 17 00:00:00 2001 From: GANGE666 <499602203@qq.com> Date: Mon, 13 Mar 2023 15:33:18 +0800 Subject: [PATCH] Minor update --- README.md | 8 ++++---- tests/build.py | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0eb5f83b6..0796b5b72 100644 --- a/README.md +++ b/README.md @@ -112,10 +112,10 @@ uint32_t tea_decrypt (uint32_t* v) { We will show the protection effects after four compilation schemes: -- [Original build](####Original build) -- [Tigress protection](####Tigress Protection) -- [xVMP protection](####xVMP Protection) -- [xVMP combined with Obfuscator-LLVM protection](####xVMP+Obfuscator-LLVM) +- Original build +- Tigress protection +- xVMP protection +- xVMP combined with Obfuscator-LLVM protection diff --git a/tests/build.py b/tests/build.py index 15aa0c578..70b3fa994 100644 --- a/tests/build.py +++ b/tests/build.py @@ -17,9 +17,9 @@ clang_path = os.path.dirname(os.path.realpath(__file__))+"/../build/bin/clang" if not os.path.exists(OUTPUT_PATH): -os.mkdir(OUTPUT_PATH) -os.mkdir(OUTPUT_PATH+"original/") -os.mkdir(OUTPUT_PATH+"govmp_out/") + os.mkdir(OUTPUT_PATH) + os.mkdir(OUTPUT_PATH+"original/") + os.mkdir(OUTPUT_PATH+"govmp_out/") def run_cmd(cmd): print("\033[31;43;1m", "Running command: ", cmd, "\033[0m")