首页 > 系统相关 >grpc php plugin 源码编译(windows)grpc_php_plugin.exe

grpc php plugin 源码编译(windows)grpc_php_plugin.exe

时间:2022-12-29 15:24:53浏览次数:38  
标签:cmake plugin grpc cd -- php

1:下载cmake 国内下载地址 https://cmake.org/files/v3.25/

2:  choco install nasm 

3: git

4: virtual studio 2022 (需要选择cmake c++ 支持 以及选择windows11 sdk支持)

操作步骤

1:下载代码

 $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc
 $ cd grpc
 $ git submodule update --init

2:编译

> @rem Run from grpc directory after cloning the repo with --recursive or updating submodules.
> md .build
> cd .build
> cmake .. -G "Visual Studio 17 2022"
> cmake --build . --config Release

3:使用

cd Release
参考: https://github.com/grpc/grpc/blob/master/BUILDING.md

标签:cmake,plugin,grpc,cd,--,php
From: https://www.cnblogs.com/a-flydog/p/17012601.html

相关文章

  • MASA MAUI Plugin (七)应用通知角标(小红点)Android+iOS
    背景MAUI的出现,赋予了广大Net开发者开发多平台应用的能力,MAUI是Xamarin.Forms演变而来,但是相比Xamarin性能更好,可扩展性更强,结构更简单。但是MAUI对于平台相关的实现并不......
  • php 循环查询接口
    do{$notify_time=time();$last_notify_time=time();$resultPartnerNotify=getHttpResponsePOST($notifyU......
  • php 查询手机号归属接口
    <?php//手机号查询归属地functionmobileAscription($mobile){$url="https://chong.qq.com/tws/mobileqqprequery/GetMobileProductInfo?loginstate=1......
  • PhpStorm 2022 for mac(PHP集成开发工具)v2022.3.1中文版
    mac版PhpStorm2022 v2022.3.1中文版更新了,PhpStorm2022formac(PHP集成开发工具)v2022.3.1中文版分享给大家,PhpStorm是一个实际“获取”你的代码的PHPIDE。它支持PHP......
  • PHP性能优化
    1.避免在循环时做一些运算操作以及数据库查询操作//优化前,每循环1次,都要执行1次count()函数$arr=[2,3,4,52,233,55,677];for($i=0;$i<count($arr);$i++){ //dos......
  • 编译php7.4和php8.0编译安装,pkg-config详情
    2022年12月21日15:49:28官网连接:https://www.php.net/manual/zh/migration74.other-changes.php#migration74.other-changes.pkg-config一些扩展已经迁移到只使用pkg-co......
  • How to install VirtualBox 6.x with phpVirtualbox web interface on Debian 11 bull
    HowtoinstallVirtualBox6.xwithphpVirtualboxwebinterfaceonDebian11bullseye/openmediavault6ThenewOpenMediaVault6usesDebian11asthebasesys......
  • LNMP架构环境之PHP环境部署
    1)使用第三方扩展源安装php7.1#1)配置PHP安装源yum -yinstallepel-releasewget​​https://mirror.webtatic.com/yum/el7/webtatic-release.rpm​​--no-check-cert......
  • windows PHPStudy Apach…
    在设置Apache+SSL之前,需要做:安装Apache,下载安装Apache时请下载带有ssl版本的Apache安装程序.并且ssl需要的文件在如下的位置: 创建SSL证书(注意,我下载的是PHP......
  • Plugin 'org.apache.maven.plugins:maven-dependency-plugin:' not found
    原本准备将模块打包,需要用到maven-dependency-plugin等插件,但是无论maven怎么刷新,它还是一直报错  在网上找来找去,发现爆红的原因居然是“主要是由于插件都写在pom文......