网站综合信息 www.321cc.cn
    • 标题:
    • W.S.T's Blog - 321Cc.Cn 
    • 关键字:
    • W.S.T WST321 321CC BossSoft Oracle Weblogic 博思软件 
    • 描述:
    • Attitude is everything 
    • 域名信息
    • 注册日期:  到期时间:
      邮箱:linhui402  电话:
      注册商:厦门易名科技股份有限公司 
    • 服务器空间
    • IP:69.163.40.21 同IP网站1个 详情
      地址:美国 俄勒冈州波特兰Directspace网络公司
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 百度
    • 0  
    • 0  
    • 快照:无首页快照  
    • Google
    • 0  
    • 0  
    • pr:1  
    • 雅虎
    • 0  
    •  
    •  
    • 搜搜
    • 0  
    •  
    •  
    • 搜狗
    • 0  
    •  
    • 评级:1/10  
    • 360搜索
    • 0  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • -  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    321cc.cn

    注 册 商: 厦门易名科技股份有限公司
    注册邮箱: linhui402

    获取时间: 2016年12月30日 09:30:20
    Domain Name: 321cc.cn
    ROID: 20070330s10001s55906498-cn
    Domain Status: clientDeleteProhibited
    Domain Status: clientTransferProhibited
    Registrant ID: ename_rg6ur4hfxc
    Registrant: 林徽
    Registrant Contact Email: linhui402
    Sponsoring Registrar: 厦门易名科技股份有限公司
    Name Server: f1g1ns1.dnspod.net
    Name Server: f1g1ns2.dnspod.net
    Registration Time: 2007-03-30 01:38:44
    Expiration Time: 2017-03-30 01:38:44
    DNSSEC: unsigned
    同IP网站(同服务器)
  • 69.163.40.21 共1个网站 (美国 俄勒冈州波特兰Directspace网络公司)
  • W.S.T's Blog - 321Cc.Cn www.321cc.cn
  • 其他后缀域名
    • 顶级域名
    • 相关信息
    网站首页快照(纯文字版)
    抓取时间:2015年06月20日 07:38:21
    网址:http://www.321cc.cn/
    标题:W.S.T's Blog - 321Cc.Cn
    关键字:W.S.T,WST321,321CC,BossSoft,Oracle,Weblogic,博思软件
    描述:Attitude is everything
    主体:
    W.S.T's Blog - 321Cc.Cn        Attitude is everything首页关于Building openresty1.7.10.1 with luajit on windows using Cygwin, 在windows下用Cygwin下编译带Luajit的openresty 作者:W.S.T发布时间:May 21, 2015分类:CodeNo CommentsFirst install 32bit cygwin.Install packet: openssl zlib-dev pcre gcc-core perl readlineopenresty没有对Cygwin做兼容,我们需要自己来修改文件Open bundle\lua-cjson and lua-rds-parser and  lua-redis-parser three folder's Makefile for edit, Add those lines before “## ..... (Macports)”bundle\lua-cjson的,lua-rds-parser的,lua-redis-parser的Makefile里,“## ***OSX (Macports)”上面加入:[plain] view plaincopyprint?在CODE上查看代码片派生到我的代码片ifeq ($(OS),Windows_NT)LDFLAGS2 += -L../luajit-root/usr/local/openresty/luajit -lcyglua51endififeq ($(OS),Windows_NT)LDFLAGS2 += -L../luajit-root/usr/local/openresty/luajit -lcyglua51endifchange[plain] view plaincopyprint?在CODE上查看代码片派生到我的代码片$(CC) $(LDFLAGS) -o $@ $^$(CC) $(LDFLAGS) -o $@ $^(cjson may be "$(CC) $(LDFLAGS) $(CJSON_LDFLAGS) -o $@ $(OBJS)")to[plain] view plaincopyprint?在CODE上查看代码片派生到我的代码片$(CC) $(LDFLAGS) -o $@ $^ $(LDFLAGS2)$(CC) $(LDFLAGS) -o $@ $^ $(LDFLAGS2)(cjson may be "$(CC) $(LDFLAGS) $(CJSON_LDFLAGS) -o $@ $(OBJS) $(LDFLAGS2)")Then run:[plain] view plaincopyprint?在CODE上查看代码片派生到我的代码片./configure --without-select_module --with-luajitlet ./configure can found your luajit:mv ./build/luajit-root/usr/local/openresty/luajit/include/luajit-2.1 /usr/local/includecp ./build/LuaJIT-2.1-20150223/src/cyglua51.dll /lib/libluajit-5.1.a./configure --without-select_module --with-luajit (must do this again)./configure --without-select_module --with-luajitlet ./configure can found your luajit:mv ./build/luajit-root/usr/local/openresty/luajit/include/luajit-2.1 /usr/local/includecp ./build/LuaJIT-2.1-20150223/src/cyglua51.dll /lib/libluajit-5.1.a./configure --without-select_module --with-luajit (must do this again)LuaJIT-2.1-20150223 my be wrong dir name, you need press tab after LuaJIT-2.1-LuaJIT-2.1-20150223目录名不一定一样,你需要在LuaJIT-2.1-文字后直接按Tab换成正确的目录。[plain] view plaincopyprint?在CODE上查看代码片派生到我的代码片let make can link your luajit:cp ./build/LuaJIT-2.1-20150223/src/cyglua51.dll ./build/luajit-root/usr/local/openresty/luajitmake -j8make install DESTDIR=/usr2cp ./build/LuaJIT-2.1-20150223/src/cyglua51.dll /usr2/usr/local/openresty/nginx/sbin/let make can link your luajit:cp ./build/LuaJIT-2.1-20150223/src/cyglua51.dll ./build/luajit-root/usr/local/openresty/luajitmake -j8make install DESTDIR=/usr2cp ./build/LuaJIT-2.1-20150223/src/cyglua51.dll /usr2/usr/local/openresty/nginx/sbin/All will be ok. You can find openresty in /usr2/usr/local/ folder.Also the ffi may be a problem, because under cygwin, -E can not be exported function symbols, i have discussed this issue with the author Agentzh, may be next version can solve this problem (Already fixed in 1.4.3.9).另外Cygwin编译的使用jit的ffi可能有问题,因为cygwin下-E无法导出函数符号,春哥已生成补丁,预估以后版本可以解决(1.4.3.9已解决)。        在windows下编译OpenResty作者:W.S.T发布时间:May 21, 2015分类:CodeNo Comments折腾了一天,终于解决了首先,准备cygwin环境cygwin下载setup.exe,启动并开始安装,建议选163源或者日本的源,速度较

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2025-06-07 20:47, Process in 0.0042 second.