Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
saltstack /
salt /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
calc-prorate
325
B
-rwxr-xr-x
cheroot
287
B
-rwxr-xr-x
cherryd
291
B
-rwxr-xr-x
distro
289
B
-rwxr-xr-x
jp.py
1.7
KB
-rwxr-xr-x
normalizer
321
B
-rwxr-xr-x
pip
298
B
-rwxr-xr-x
pip3
298
B
-rwxr-xr-x
pip3.10
298
B
-rwxr-xr-x
python3
3.25
MB
-rwxr-xr-x
python3-config
3.45
KB
-rwxr-xr-x
python3.10
3.25
MB
-rwxr-xr-x
python3.10-config
3.45
KB
-rwxr-xr-x
relenv
291
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : python3-config
#!/bin/sh # Keep this script in sync with python-config.in exit_with_usage () { echo "Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir|--embed" exit $1 } if [ "$1" = "" ] ; then exit_with_usage 1 fi # Returns the actual prefix where this script was installed to. installed_prefix () { RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) if which readlink >/dev/null 2>&1 ; then if readlink -f "$RESULT" >/dev/null 2>&1; then RESULT=$(readlink -f "$RESULT") fi fi echo $RESULT } prefix_real=$(installed_prefix "$0") # Use sed to fix paths from their built-to locations to their installed-to # locations. Keep prefix & exec_prefix using their original values in case # they are referenced in other configure variables, to prevent double # substitution, issue #22140. prefix="/opt/actions-runner/_work/relenv/relenv/build/3.10.14-x86_64-linux-gnu" exec_prefix="${prefix}" exec_prefix_real=${prefix_real} includedir=$(echo "${prefix}/include" | sed "s#$prefix#$prefix_real#") libdir=$(echo "${exec_prefix}/lib" | sed "s#$prefix#$prefix_real#") CFLAGS=$(echo "-Wno-coverage-mismatch -g -I/opt/actions-runner/_work/relenv/relenv/build/3.10.14-x86_64-linux-gnu/include -I/opt/actions-runner/_work/relenv/relenv/build/3.10.14-x86_64-linux-gnu/include/readline -I/opt/actions-runner/_work/relenv/relenv/build/3.10.14-x86_64-linux-gnu/include/ncursesw -I/opt/actions-runner/_work/relenv/relenv/toolchain/x86_64-linux-gnu/x86_64-linux-gnu/sysroot/usr/include" | sed "s#$prefix#$prefix_real#") VERSION="3.10" LIBM="-lm" LIBC="" SYSLIBS="$LIBM $LIBC" ABIFLAGS="" LIBS=" -lcrypt -lpthread -ldl -lutil -lm $SYSLIBS" LIBS_EMBED="-lpython${VERSION}${ABIFLAGS} -lcrypt -lpthread -ldl -lutil -lm $SYSLIBS" BASECFLAGS=" -Wno-unused-result -Wsign-compare" LDLIBRARY="libpython${VERSION}${ABIFLAGS}.a" OPT="-DNDEBUG -g -O3 -Wall" PY_ENABLE_SHARED="0" LDVERSION="${VERSION}${ABIFLAGS}" LIBDEST=${prefix_real}/lib/python${VERSION} LIBPL=$(echo "${prefix}/lib/python3.10/config-${VERSION}${ABIFLAGS}-x86_64-linux-gnu" | sed "s#$prefix#$prefix_real#") SO=".cpython-310-x86_64-linux-gnu.so" PYTHONFRAMEWORK="" INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PY_EMBED=0 # Scan for --help or unknown argument. for ARG in $* do case $ARG in --help) exit_with_usage 0 ;; --embed) PY_EMBED=1 ;; --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--abiflags|--configdir) ;; *) exit_with_usage 1 ;; esac done if [ $PY_EMBED = 1 ] ; then LIBS="$LIBS_EMBED" fi for ARG in "$@" do case "$ARG" in --prefix) echo "$prefix_real" ;; --exec-prefix) echo "$exec_prefix_real" ;; --includes) echo "$INCDIR $PLATINCDIR" ;; --cflags) echo "$INCDIR $PLATINCDIR $BASECFLAGS $CFLAGS $OPT" ;; --libs) echo "$LIBS" ;; --ldflags) LIBPLUSED= if [ "$PY_ENABLE_SHARED" = "0" ] ; then LIBPLUSED="-L$LIBPL" fi echo "$LIBPLUSED -L$libdir $LIBS" ;; --extension-suffix) echo "$SO" ;; --abiflags) echo "$ABIFLAGS" ;; --configdir) echo "$LIBPL" ;; esac done
Close