-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
thientc
committed
May 11, 2023
1 parent
20eebbb
commit 710168d
Showing
10 changed files
with
82 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/bash | ||
|
||
#===-- build.sh -------*- bash script -*-===// | ||
# | ||
# This file is distributed under the GPL v3 license (https://www.gnu.org/licenses/gpl-3.0.en.html). | ||
# | ||
# This script helps to build llvm with clang and compiler-rt | ||
|
||
echo "************************************************" | ||
echo "* ______ __ __ ______ ___ ______ *" | ||
echo "* / ____/ / / / / /_ __/ / | / ____/ *" | ||
echo "* / /_ / / / / / / / /| | / / __ *" | ||
echo "* / __/ / /_/ / / / / ___ | / /_/ / *" | ||
echo "* /_/ \____/ /_/ /_/ |_| \____/ *" | ||
echo "* *" | ||
echo "* Fuzzing target Automated Generator *" | ||
echo "* a tool of ISP RAS *" | ||
echo "************************************************" | ||
echo "" | ||
|
||
|
||
SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" | ||
echo "Exporting Futag path for AFLplusplus: "$SCRIPTPATH | ||
echo "" | ||
set -x | ||
export PATH="$SCRIPTPATH/bin:$PATH" | ||
export LLVM_CONFIG="$SCRIPTPATH/bin/llvm-config" | ||
export LD_LIBRARY_PATH="$(llvm-config --libdir)${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" | ||
|
||
futag_install_folder="$SCRIPTPATH" | ||
|
||
cd $SCRIPTPATH | ||
tar xf 4.02c.tar.gz | ||
# mv AFLplusplus-4.02c $build_folder/ | ||
cd AFLplusplus-4.02c | ||
make -j$(($(nproc)/2)) distrib | ||
make -j$(($(nproc)/2)) DESTDIR=$futag_install_folder/AFLplusplus install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+134 Bytes
(100%)
src/python/futag-package/dist/futag-2.0.3-py3-none-any.whl
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters