Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Delete
Unzip
Name
Size
Permission
Date
Action
Doc
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
Grammar
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
Include
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
Lib
[ DIR ]
drwxr-xr-x
2025-06-04 09:22
Mac
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
Misc
[ DIR ]
drwxr-xr-x
2025-06-04 09:17
Modules
[ DIR ]
drwxr-xr-x
2025-06-04 09:22
Objects
[ DIR ]
drwxr-xr-x
2025-06-04 09:22
PC
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
PCbuild
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
Parser
[ DIR ]
drwxr-xr-x
2025-06-04 09:22
Programs
[ DIR ]
drwxr-xr-x
2025-06-04 09:22
Python
[ DIR ]
drwxr-xr-x
2025-06-04 09:22
Tools
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
build
[ DIR ]
drwxr-xr-x
2025-06-04 09:21
.editorconfig
181
B
-rw-r--r--
2024-03-19 22:46
.readthedocs.yml
338
B
-rw-r--r--
2024-03-19 22:46
CODE_OF_CONDUCT.md
630
B
-rw-r--r--
2024-03-19 22:46
LICENSE
13.61
KB
-rw-r--r--
2024-03-19 22:46
Makefile
80.97
KB
-rw-r--r--
2025-06-04 09:17
Makefile.pre
72.07
KB
-rw-r--r--
2025-06-04 09:17
Makefile.pre.in
72.29
KB
-rw-r--r--
2024-03-19 22:46
README.rst
9.9
KB
-rw-r--r--
2024-03-19 22:46
aclocal.m4
22.26
KB
-rw-r--r--
2024-03-19 22:46
config.guess
48.19
KB
-rwxr-xr-x
2024-03-19 22:46
config.log
700.89
KB
-rw-r--r--
2025-06-04 09:17
config.status
41.91
KB
-rwxr-xr-x
2025-06-04 09:17
config.sub
34.45
KB
-rwxr-xr-x
2024-03-19 22:46
configure
512.71
KB
-rwxr-xr-x
2024-03-19 22:46
configure.ac
174.9
KB
-rw-r--r--
2024-03-19 22:46
install-sh
15.01
KB
-rwxr-xr-x
2024-03-19 22:46
libpython3.10.a
48.23
MB
-rw-r--r--
2025-06-04 09:22
profile-run-stamp
0
B
-rw-r--r--
2025-06-04 09:21
pybuilddir.txt
27
B
-rw-r--r--
2025-06-04 09:22
pyconfig.h
47.61
KB
-rw-r--r--
2025-06-04 09:17
pyconfig.h.in
45.47
KB
-rw-r--r--
2024-03-19 22:46
python
18.28
MB
-rwxr-xr-x
2025-06-04 09:22
python-config
3.02
KB
-rw-r--r--
2025-06-04 09:18
python-config.py
2
KB
-rw-r--r--
2025-06-04 09:18
python-gdb.py
64.19
KB
-rw-r--r--
2025-06-04 09:18
setup.py
114.34
KB
-rw-r--r--
2024-03-19 22:46
Save
Rename
#!/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="/usr/local" 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 "" | 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 -fwrapv -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