OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python311
/
bin
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/16/2024 08:50:23 PM
rwxr-xr-x
📄
2to3
110 bytes
06/23/2025 03:47:39 PM
rwxr-xr-x
📁
__pycache__
-
05/08/2024 06:43:06 PM
rwxr-xr-x
📄
chardetect
235 bytes
05/08/2024 06:42:09 PM
rwxr-xr-x
📄
easy_install
244 bytes
05/08/2024 06:41:49 PM
rwxr-xr-x
📄
easy_install-3.11
244 bytes
05/08/2024 06:41:49 PM
rwxr-xr-x
📄
jp.py
1.67 KB
05/08/2024 06:43:06 PM
rwxr-xr-x
📄
markdown-it
234 bytes
05/08/2024 06:42:35 PM
rwxr-xr-x
📄
msgfmt3.11.py
7.43 KB
06/03/2025 06:38:25 PM
rwxr-xr-x
📄
msgfmt3.py
7.43 KB
06/03/2025 06:38:25 PM
rwxr-xr-x
📄
pathfix.py
6.64 KB
06/03/2025 06:38:25 PM
rwxr-xr-x
📄
pip
662 bytes
11/13/2023 10:00:32 PM
rwxr-xr-x
📄
pip-3
662 bytes
11/13/2023 10:00:32 PM
rwxr-xr-x
📄
pip-3.11
662 bytes
11/13/2023 10:00:32 PM
rwxr-xr-x
📄
pip3
662 bytes
11/13/2023 10:00:32 PM
rwxr-xr-x
📄
pip3.11
662 bytes
11/13/2023 10:00:32 PM
rwxr-xr-x
📄
pydoc3
93 bytes
06/23/2025 03:47:39 PM
rwxr-xr-x
📄
pydoc3.11
93 bytes
06/23/2025 03:47:39 PM
rwxr-xr-x
📄
pygettext3.11.py
23.67 KB
06/03/2025 06:38:25 PM
rwxr-xr-x
📄
pygettext3.py
23.67 KB
06/03/2025 06:38:25 PM
rwxr-xr-x
📄
pygmentize
229 bytes
05/08/2024 06:42:35 PM
rwxr-xr-x
📄
pyroute2-cli
227 bytes
05/08/2024 06:42:21 PM
rwxr-xr-x
📄
pyroute2-dhcp-client
231 bytes
05/08/2024 06:42:21 PM
rwxr-xr-x
📄
pyroute2-test-platform
240 bytes
05/08/2024 06:42:21 PM
rwxr-xr-x
📄
python3
15.59 KB
06/23/2025 03:48:27 PM
rwxr-xr-x
📄
python3-config
173 bytes
06/23/2025 03:47:41 PM
rwxr-xr-x
📄
python3.11
15.59 KB
06/23/2025 03:48:27 PM
rwxr-xr-x
📄
python3.11-config
173 bytes
06/23/2025 03:47:41 PM
rwxr-xr-x
📄
python3.11-x86_64-config
3.37 KB
06/23/2025 03:30:08 PM
rwxr-xr-x
📄
ss2
236 bytes
05/08/2024 06:42:21 PM
rwxr-xr-x
📄
tabulate
223 bytes
05/08/2024 06:42:40 PM
rwxr-xr-x
📄
typer
222 bytes
05/08/2024 06:42:36 PM
rwxr-xr-x
Editing: python3.11-x86_64-config
Close
#!/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/alt/python311" exec_prefix="/opt/alt/python311" exec_prefix_real=${prefix_real} includedir=$(echo "/opt/alt/python311/include" | sed "s#$prefix#$prefix_real#") libdir=$(echo "/opt/alt/python311/lib64" | sed "s#$prefix#$prefix_real#") CFLAGS=$(echo " -D_GNU_SOURCE -fPIC -fwrapv -O2 -pthread -Wno-unused-result -Wsign-compare -g -std=c99 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Werror=implicit-function-declaration" | sed "s#$prefix#$prefix_real#") VERSION="3.11" LIBM="-lm" LIBC="" SYSLIBS="$LIBM $LIBC" ABIFLAGS="" LIBS=" -ldl -lutil $SYSLIBS" LIBS_EMBED="-lpython${VERSION}${ABIFLAGS} -ldl -lutil $SYSLIBS" BASECFLAGS="" LDLIBRARY="libpython${LDVERSION}.so" OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -D_GNU_SOURCE -fPIC -fwrapv -O2 -pthread -Wno-unused-result -Wsign-compare -g -std=c99 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Werror=implicit-function-declaration -D_GNU_SOURCE -fPIC -fwrapv" PY_ENABLE_SHARED="1" LDVERSION="${VERSION}${ABIFLAGS}" LIBDEST=${prefix_real}/lib/python${VERSION} LIBPL=$(echo "${prefix}/lib64/python3.11/config-${VERSION}${ABIFLAGS}-x86_64-linux-gnu" | sed "s#$prefix#$prefix_real#") SO=".cpython-311-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