Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
cmake-3.22 /
Modules /
Platform /
Android /
[ HOME SHELL ]
Name
Size
Permission
Action
Determine-Compiler-NDK.cmake
13.19
KB
-rw-r--r--
Determine-Compiler-Standalone....
2.85
KB
-rw-r--r--
Determine-Compiler.cmake
3.66
KB
-rw-r--r--
VCXProjInspect.vcxproj.in
1.68
KB
-rw-r--r--
abi-arm64-v8a-Clang.cmake
144
B
-rw-r--r--
abi-arm64-v8a-GNU.cmake
208
B
-rw-r--r--
abi-armeabi-Clang.cmake
335
B
-rw-r--r--
abi-armeabi-GNU.cmake
398
B
-rw-r--r--
abi-armeabi-v6-Clang.cmake
320
B
-rw-r--r--
abi-armeabi-v6-GNU.cmake
383
B
-rw-r--r--
abi-armeabi-v7a-Clang.cmake
552
B
-rw-r--r--
abi-armeabi-v7a-GNU.cmake
615
B
-rw-r--r--
abi-common-Clang.cmake
162
B
-rw-r--r--
abi-common-GNU.cmake
37
B
-rw-r--r--
abi-common.cmake
1.38
KB
-rw-r--r--
abi-mips-Clang.cmake
43
B
-rw-r--r--
abi-mips-GNU.cmake
106
B
-rw-r--r--
abi-mips64-Clang.cmake
43
B
-rw-r--r--
abi-mips64-GNU.cmake
108
B
-rw-r--r--
abi-x86-Clang.cmake
43
B
-rw-r--r--
abi-x86-GNU.cmake
88
B
-rw-r--r--
abi-x86_64-Clang.cmake
43
B
-rw-r--r--
abi-x86_64-GNU.cmake
91
B
-rw-r--r--
ndk-stl-c++.cmake
1.05
KB
-rw-r--r--
ndk-stl-c++_shared.cmake
255
B
-rw-r--r--
ndk-stl-c++_static.cmake
590
B
-rw-r--r--
ndk-stl-gabi++.cmake
387
B
-rw-r--r--
ndk-stl-gabi++_shared.cmake
130
B
-rw-r--r--
ndk-stl-gabi++_static.cmake
129
B
-rw-r--r--
ndk-stl-gnustl.cmake
804
B
-rw-r--r--
ndk-stl-gnustl_shared.cmake
130
B
-rw-r--r--
ndk-stl-gnustl_static.cmake
129
B
-rw-r--r--
ndk-stl-none.cmake
68
B
-rw-r--r--
ndk-stl-stlport.cmake
391
B
-rw-r--r--
ndk-stl-stlport_shared.cmake
133
B
-rw-r--r--
ndk-stl-stlport_static.cmake
132
B
-rw-r--r--
ndk-stl-system.cmake
268
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Determine-Compiler.cmake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying # file Copyright.txt or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__ANDROID_DETERMINE_COMPILER) return() endif() set(__ANDROID_DETERMINE_COMPILER 1) # Include the NDK hook. # It can be used by NDK to inject necessary fixes for an earlier cmake. if(CMAKE_ANDROID_NDK) include(${CMAKE_ANDROID_NDK}/build/cmake/hooks/pre/Determine-Compiler.cmake OPTIONAL) endif() # Support for NVIDIA Nsight Tegra Visual Studio Edition was previously # implemented in the CMake VS IDE generators. Avoid interfering with # that functionality for now. Later we may try to integrate this. if(CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android") macro(__android_determine_compiler lang) endmacro() return() endif() # Commonly used Android toolchain files that pre-date CMake upstream support # set CMAKE_SYSTEM_VERSION to 1. Avoid interfering with them. if(CMAKE_SYSTEM_VERSION EQUAL 1) macro(__android_determine_compiler lang) endmacro() return() endif() # Identify the host platform. if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin") set(_ANDROID_HOST_EXT "") elseif(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") set(_ANDROID_HOST_EXT "") elseif(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") set(_ANDROID_HOST_EXT ".exe") elseif(CMAKE_HOST_SYSTEM_NAME STREQUAL "Android") # Natively compiling on an Android host doesn't use the NDK cross-compilation # tools. macro(__android_determine_compiler lang) # Do nothing endmacro() if(NOT CMAKE_CXX_COMPILER_NAMES) set(CMAKE_CXX_COMPILER_NAMES c++) endif() return() else() message(FATAL_ERROR "Android: Builds hosted on '${CMAKE_HOST_SYSTEM_NAME}' not supported.") endif() if(CMAKE_ANDROID_NDK) include(Platform/Android/Determine-Compiler-NDK) elseif(CMAKE_ANDROID_STANDALONE_TOOLCHAIN) include(Platform/Android/Determine-Compiler-Standalone) else() set(_ANDROID_TOOL_NDK_TOOLCHAIN_VERSION "") set(_ANDROID_TOOL_C_COMPILER "") set(_ANDROID_TOOL_C_TOOLCHAIN_MACHINE "") set(_ANDROID_TOOL_C_TOOLCHAIN_VERSION "") set(_ANDROID_TOOL_C_COMPILER_EXTERNAL_TOOLCHAIN "") set(_ANDROID_TOOL_C_TOOLCHAIN_PREFIX "") set(_ANDROID_TOOL_C_TOOLCHAIN_SUFFIX "") set(_ANDROID_TOOL_CXX_COMPILER "") set(_ANDROID_TOOL_CXX_TOOLCHAIN_MACHINE "") set(_ANDROID_TOOL_CXX_TOOLCHAIN_VERSION "") set(_ANDROID_TOOL_CXX_COMPILER_EXTERNAL_TOOLCHAIN "") set(_ANDROID_TOOL_CXX_TOOLCHAIN_PREFIX "") set(_ANDROID_TOOL_CXX_TOOLCHAIN_SUFFIX "") endif() unset(_ANDROID_HOST_EXT) macro(__android_determine_compiler lang) if(_ANDROID_TOOL_${lang}_COMPILER) set(CMAKE_${lang}_COMPILER "${_ANDROID_TOOL_${lang}_COMPILER}") set(CMAKE_${lang}_COMPILER_EXTERNAL_TOOLCHAIN "${_ANDROID_TOOL_${lang}_COMPILER_EXTERNAL_TOOLCHAIN}") # Save the Android-specific information in CMake${lang}Compiler.cmake. set(CMAKE_${lang}_COMPILER_CUSTOM_CODE " set(CMAKE_ANDROID_NDK_TOOLCHAIN_VERSION \"${_ANDROID_TOOL_NDK_TOOLCHAIN_VERSION}\") set(CMAKE_${lang}_ANDROID_TOOLCHAIN_MACHINE \"${_ANDROID_TOOL_${lang}_TOOLCHAIN_MACHINE}\") set(CMAKE_${lang}_ANDROID_TOOLCHAIN_VERSION \"${_ANDROID_TOOL_${lang}_TOOLCHAIN_VERSION}\") set(CMAKE_${lang}_COMPILER_EXTERNAL_TOOLCHAIN \"${_ANDROID_TOOL_${lang}_COMPILER_EXTERNAL_TOOLCHAIN}\") set(CMAKE_${lang}_ANDROID_TOOLCHAIN_PREFIX \"${_ANDROID_TOOL_${lang}_TOOLCHAIN_PREFIX}\") set(CMAKE_${lang}_ANDROID_TOOLCHAIN_SUFFIX \"${_ANDROID_TOOL_${lang}_TOOLCHAIN_SUFFIX}\") ") endif() endmacro() # Include the NDK hook. # It can be used by NDK to inject necessary fixes for an earlier cmake. if(CMAKE_ANDROID_NDK) include(${CMAKE_ANDROID_NDK}/build/cmake/hooks/post/Determine-Compiler.cmake OPTIONAL) endif()
Close