Last active
January 13, 2023 08:29
-
-
Save ox1111/3a69d41840cadd2988ac144106acd9a9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# | |
# write by SpeeDr00t | |
# | |
# | |
# 실행 | |
# | |
# chmod 755 acewrapper.sh | |
# . acewrapper.sh | |
# | |
gcc --version | |
sleep 1 | |
uname -a | |
sleep 1 | |
perl -v | |
sleep 1 | |
cd ~ | |
pwd | |
sleep 1 | |
wget https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-7_0_11/ACE+TAO-7.0.11.tar.gz | |
tar xvf ACE+TAO-7.0.11.tar.gz | |
sleep 1 | |
echo 'export ACE_ROOT=$HOME/ACE_wrappers' >> ~/.bashrc | |
echo 'export LD_LIBRARY_PATH=$ACE_ROOT' >> ~/.bashrc | |
source ~/.bashrc | |
sleep 1 | |
pushd $ACE_ROOT | |
echo '#include "ace/config-linux.h"' > $ACE_ROOT/ace/config.h | |
echo 'include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU' > $ACE_ROOT/include/makeinclude/platform_macros.GNU | |
echo 'INSTALL_PREFIX = $(ACE_ROOT)' >> $ACE_ROOT/include/makeinclude/platform_macros.GNU | |
sleep 1 | |
make && make install | |
echo "All For One, One For All" | |
echo "Black Falcon" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment