TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Yurun fe99467ea4 fix(compiler): 支持返回引用转发引用调用 1 month ago
.claude/plans docs(architecture): 添加代码复用改进计划和封装审查文档 2 months ago
.github refactor(tests): replace native_types and complex_types with Type constants 1 month ago
bin rename(compiler): update compiler executable name from compiler.php to tpc.php 1 month ago
docs refactor(compiler): replace output parameters with return values and adjust visibility 1 month ago
examples rename(compiler): update compiler executable name from compiler.php to tpc.php 1 month ago
phpunit refactor(compiler): replace output parameters with return values and adjust visibility 1 month ago
src fix(compiler): 支持返回引用转发引用调用 1 month ago
tests fix(compiler): 支持返回引用转发引用调用 1 month ago
.clang-format update 8 months ago
.gitignore feat(build): add library build mode with proper target naming 2 months ago
.php-cs-fixer.dist.php Revert "style(config): 更新PHP代码样式配置" 4 months ago
CLAUDE.md rename(tests): move aot tests directory to compiler 1 month ago
LICENSE.md docs(license): 更新版权信息归属 4 months ago
README.md feat(installer): add libphp.so installer for Linux environments 1 month ago
app.manifest feat(build): 支持 Windows 应用程序清单文件配置 2 months ago
ast.py 支持目录处理 8 months ago
clean-elf.sh chore(build): 更新版本号并优化打包脚本 2 months ago
cli.php feat(php): 添加 std::array 类型支持并优化编译器功能 4 months ago
composer.json rename(compiler): update compiler executable name from compiler.php to tpc.php 1 month ago
composer.lock feat(installer): add libphp.so installer for Linux environments 1 month ago
package-on-windows.php rename(project): refactor Swoole-Compiler to TypePHP 2 months ago
package.json feat(build): 添加 Windows 资源文件支持功能 4 months ago
package.sh feat: 将打包产物重命名为tpc 2 months ago
phpunit.xml feat(compiler): 添加测试模式和静态变量重复检测功能 5 months ago
project.yml refactor(docs): update file paths and directory structure references 2 months ago
rounds.txt update 8 months ago
run-tests.php rename(compiler): update compiler executable name from compiler.php to tpc.php 1 month ago
swoole-logo.ico feat(build): 添加 Windows 资源文件支持功能 4 months ago
swoole-logo.svg feat(build): 添加 Windows 资源文件支持功能 4 months ago
version.txt feat(build): add support for building shared libraries in addition to binaries and extensions 2 months ago

README.md

依赖

  • 编译器需要 PHP 8.4 以上版本;生成的扩展仍可面向 PHP 8.2~8.5
  • 需要 GCC-9 以上版本,支持 C++17 标准
  • 需要 CMake-3.24 以上版本
  • 需要高精度数学库:GMPMPFRlibmpdec

Composer 安装

在项目中安装 TypePHP:

composer require --dev swoole/typephp

安装后可直接编译项目:

vendor/bin/tpc.php project.yml

在 TypePHP 源码仓库中则使用:

bin/tpc.php project.yml

Linux 环境缺少 libphp.so 时,tpc.php 可以交互式下载 PHP 源码并自动构建,详见 自动构建 libphp.so

# Ubuntu/Debian
sudo apt install libgmp-dev libmpfr-dev libmpdec-dev

# RHEL/CentOS/Fedora
sudo dnf install gmp-devel mpfr-devel libmpdec-devel

# Arch Linux
sudo pacman -S gmp mpfr mpdecimal

GMP 用于 BigInt 任意精度整数,MPFR 用于 BigFloat 高精度浮点数,libmpdec 用于 Decimal 十进制高精度小数。

预览版目前仅支持 Linux 系统,建议使用 Ubuntu 22.04

PHP

必须包含 embed 模块

PHPX

可使用 composer install 安装依赖。 进入 vendor/swoole/phpx 目录,编译 phpx

cd vendor/swoole/phpx
cmake .
make -j32

动态链接库

sudo ldconfig -p | grep php

必须包含 libphp.solibphpx.so

若编译完成,但找不到动态链接库,需要修改

vim /etc/ld.so.conf.d/swoole.conf 

添加路径

/home/swoole/workspace/projects/phpx/lib
/opt/php-8.4/lib/