OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
/
vendor
/
aws
/
aws-crt-php
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/21/2024 10:01:20 AM
rwxr-xr-x
📄
.clang-format
1.67 KB
08/21/2024 10:01:18 AM
rw-r--r--
📄
.clang-format-ignore
54 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📁
.git
-
08/21/2024 10:04:15 AM
rwxr-xr-x
📄
.gitattributes
570 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📁
.github
-
08/21/2024 10:02:50 AM
rwxr-xr-x
📄
.gitignore
4.17 KB
08/21/2024 10:01:18 AM
rw-r--r--
📄
.gitmodules
107 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📄
CODE_OF_CONDUCT.md
313 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
CONTRIBUTING.md
3.29 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
LICENSE
10.08 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
Makefile.frag
3.12 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
Makefile.frag.w32
1.39 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
NOTICE
68 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
README.md
4.56 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
builder.json
813 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📄
composer.json
988 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
config.m4
1.16 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
config.w32
681 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📁
crt
-
08/21/2024 10:02:50 AM
rwxr-xr-x
📁
dev-scripts
-
08/21/2024 10:01:27 AM
rwxr-xr-x
📁
ext
-
08/21/2024 10:01:28 AM
rwxr-xr-x
📄
format-check.sh
495 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
gen_api.php
476 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
gen_stub.php
65.22 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
php-win.ini
81 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
php.ini
29 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📁
src
-
08/21/2024 10:04:16 AM
rwxr-xr-x
📁
tests
-
08/21/2024 10:01:29 AM
rwxr-xr-x
Editing: Makefile.frag.w32
Close
CMAKE=cmake.exe PHP_BINARY=$(PHP_PREFIX)\php.exe CMAKE_CONFIGURE = $(CMAKE) -DCMAKE_INSTALL_PREFIX=$(AWSCRT_DIR)\build\install -DCMAKE_PREFIX_PATH=$(AWSCRT_DIR)\build\install -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE) CMAKE_BUILD = $(CMAKE) --build CMAKE_BUILD_TYPE = Release CMAKE_TARGET = --config $(CMAKE_BUILD_TYPE) --target install # configure for static aws-crt-ffi.lib $(AWSCRT_DIR)\build\CMakeCache.txt: $(CMAKE_CONFIGURE) -H$(AWSCRT_DIR)\crt\aws-crt-ffi -B$(AWSCRT_DIR)\build -DBUILD_SHARED_LIBS=OFF # build static libaws-crt-ffi.lib $(AWSCRT_DIR)\build\libaws-crt-ffi.lib: $(AWSCRT_DIR)\build\CMakeCache.txt $(CMAKE_BUILD) $(AWSCRT_DIR)\build $(CMAKE_TARGET) # Force the awscrt extension DLL target to depend on the extension src $(BUILD_DIR)\php_awscrt.dll: $(AWSCRT_DIR)\ext\awscrt.c $(AWSCRT_DIR)\ext\awscrt.c: $(AWSCRT_DIR)\build\libaws-crt-ffi.lib $(AWSCRT_DIR)\ext\api.h $(AWSCRT_DIR)\ext\awscrt_arginfo.h # transform\install api.h from FFI lib $(AWSCRT_DIR)\ext\api.h: $(AWSCRT_DIR)\crt\aws-crt-ffi\src\api.h php $(AWSCRT_DIR)\gen_api.php $(AWSCRT_DIR)\crt\aws-crt-ffi\src\api.h > $(AWSCRT_DIR)\ext\api.h # Get the dll directory to load generate-php-ini: @echo extension=$(BUILD_DIR)\php_awscrt.dll > php-win.ini @echo extension=$(PHP_PREFIX)\ext\php_openssl.dll >> php-win.ini @echo extension=$(PHP_PREFIX)\ext\php_mbstring.dll >> php-win.ini