当前位置: 首页 > news >正文

推广网站的公司网页开发流程图

推广网站的公司,网页开发流程图,seo培训资料,php做的网站如何运行本文章只做个人笔记用 下载地址#xff1a; #https://github.com/open-license-manager/licensecc.git #下面地址下不下来就是用第一个去官网下载git clone --recursive https://github.com/open-license-manager/licensecc.git 编译前准备3个库#xff1a;openssl#x…本文章只做个人笔记用 下载地址 #https://github.com/open-license-manager/licensecc.git #下面地址下不下来就是用第一个去官网下载git clone --recursive https://github.com/open-license-manager/licensecc.git 编译前准备3个库openssllcc-license-generator zlib-1.3.1 这个库需要用到openssl的版本是1.0.0以上因为版本太低里面的函数没有。编译这个库之前需要编译boost之前写过编译boots。下载lcc-license-generator 库 https://github.com/open-license-manager/lcc-license-generator.git 1.默认openssl zlib库编译没问题。开始编译lcc-license-generator指定安装路径制定boost路径指定交叉编译器路径 cd lcc-license-generator-develop/build cmake .. -DCMAKE_INSTALL_PREFIX../install -DCMAKE_TOOLCHAIN_FILE/home/t113_tq.cmake -DBOOST_ROOT/home/boost_1_78_0 make make install 编译结果如下至此lcc-license-generator编译完成。 axxaxx:/home/code/axx/project_5g_unit/conference/thirdpart/lcc-license-generator-develop/build$ cmake .. -DCMAKE_INSTALL_PREFIX../install -DCMAKE_TOOLCHAIN_FILE/home/code/axx/project_5g_unit/conference/thirdpart/t113_tq.cmake -DBOOST_ROOT/home/code/axx/project_5g_unit/conference/thirdpart/boost_1_78_0 -- Found openssl version 1.1.1 - generator CMake Warning at /opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1187 (message):New Boost version may have incorrect or missing dependencies and importedtargets Call Stack (most recent call first):/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1311 (_Boost_COMPONENT_DEPENDENCIES)/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1919 (_Boost_MISSING_DEPENDENCIES)CMakeLists.txt:102 (find_package)CMake Warning at /opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1187 (message):New Boost version may have incorrect or missing dependencies and importedtargets Call Stack (most recent call first):/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1311 (_Boost_COMPONENT_DEPENDENCIES)/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1919 (_Boost_MISSING_DEPENDENCIES)CMakeLists.txt:102 (find_package)CMake Warning at /opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1187 (message):New Boost version may have incorrect or missing dependencies and importedtargets Call Stack (most recent call first):/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1311 (_Boost_COMPONENT_DEPENDENCIES)/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1919 (_Boost_MISSING_DEPENDENCIES)CMakeLists.txt:102 (find_package)CMake Warning at /opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1187 (message):New Boost version may have incorrect or missing dependencies and importedtargets Call Stack (most recent call first):/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1311 (_Boost_COMPONENT_DEPENDENCIES)/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1919 (_Boost_MISSING_DEPENDENCIES)CMakeLists.txt:102 (find_package)CMake Warning at /opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1187 (message):New Boost version may have incorrect or missing dependencies and importedtargets Call Stack (most recent call first):/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1311 (_Boost_COMPONENT_DEPENDENCIES)/opt/cmake-3.18.0/share/cmake-3.18/Modules/FindBoost.cmake:1919 (_Boost_MISSING_DEPENDENCIES)CMakeLists.txt:102 (find_package)-- CXX compiler : /usr/bin/c -- CXX compiler flags : -- CXX compiler flags debug : -g -- CXX compiler flags release: -O3 -DNDEBUG -- Install prefix : /home/code/lixd/project_5g_unit/conference/thirdpart/lcc-license-generator-develop/install -- External libs : -lpthread -- Exporting current build directory CMake Warning at src/license_generator/CMakeLists.txt:36 (export):Cannot create package registry file:/home/swan/.cmake/packages/lccgen/0a279ca82ac3ae27827040e8592103adNo such file or directory-- Configuring done -- Generating done -- Build files have been written to: /home/code/axx/project_5g_unit/conference/thirdpart/lcc-license-generator-develop/build 2.编译licensecc cd licensecc rm -rf ./build mkdir build cd buildMyDIR/home/code/axx/libecho Enter a number between 1 and 2 to select Compilation toolchain echo 1 :gcc case $num in1) echo You entered 1 cmake \.. \-DCMAKE_TOOLCHAIN_FILE../t113_tq.cmake \-DCMAKE_INSTALL_PREFIX$MyDIR/build_t113 \-DBOOST_ROOT/home/code/axx/project_5g_unit/conference/thirdpart/boost_1_78_0 \;; *)echo Invalid number;; esac make make install 在使用 CMake 配置 Licensecc 时可以通过 -DLCC_PROJECT_NAMEYourProjectName 指定你的项目名称。这将创建一个以项目名称命名的文件夹在 licensecc/projects/ 目录下并包含项目的私钥和公钥 t113_tq.cmake 内容如下 set (CMAKE_CXX_STANDARD 11) set (CMAKE_CXX_STANDARD_REQUIRED True) SET (CMAKE_SYSTEM_NAME Linux) SET (CMAKE_SYSTEM_PROCESSOR arm) SET (CMAKE_SYSTEM_VERSION 1) SET (CMAKE_C_FLAGS -I/home/sdk/t113_tq/TQT113_linux_V2.0/out/toolchain/gcc-linaro-5.3.1-2016.05-x86_64_arm-linux-gnueabi/arm-linux-gnueabi/libc/usr/include) SET (CMAKE_C_COMPILER /home/sdk/t113_tq/TQT113_linux_V2.0/out/toolchain/gcc-linaro-5.3.1-2016.05-x86_64_arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc) SET (CMAKE_CXX_COMPILER /home/sdk/t113_tq/TQT113_linux_V2.0/out/toolchain/gcc-linaro-5.3.1-2016.05-x86_64_arm-linux-gnueabi/bin/arm-linux-gnueabi-g) SET (CMAKE_FIND_ROOT_PATH /home/sdk/t113_tq/TQT113_linux_V2.0/out/toolchain/gcc-linaro-5.3.1-2016.05-x86_64_arm-linux-gnueabi) SET (STAGING_DIR /home/sdk/t113_tq/TQT113_linux_V2.0/out/toolchain/gcc-linaro-5.3.1-2016.05-x86_64_arm-linux-gnueabi/bin)SET (OPENSSL_ROOT_DIR /home/code/axx/project_5g_unit/conference/lib/build_t113) SET (OPENSSL_CRYPTO_LIBRARY /home/code/axx/project_5g_unit/conference/lib/build_t113/lib) SET (OPENSSL_INCLUDE_DIR /home/code/axx/project_5g_unit/conference/lib/build_t113/include) SET (OPENSSL_SSL_LIBRARY /home/code/axx/project_5g_unit/conference/lib/build_t113/lib)#using for licensecc include_directories(/home/sdk/t113_tq/TQT113_linux_V2.0/out/t113/evb1_auto/buildroot/buildroot/host/arm-buildroot-linux-gnueabi/sysroot/usr/include) SET (ZLIB_LIBRARY /home/code/axx/project_5g_unit/conference/lib/build_t113/lib) SET (ZLIB_INCLUDE_DIR /home/code/axx/project_5g_unit/conference/lib/build_t113/include)SET (lccgen_DIR /home/code/axx/project_5g_unit/conference/thirdpart/lcc-license-generator-develop/build) SET (Boost_INCLUDE_DIR /home/code/axx/project_5g_unit/conference/thirdpart/boost_1_78_0/install/include) SET (Boost_LIBRARY /home/code/axx/project_5g_unit/conference/thirdpart/boost_1_78_0/install/lib)#using for licensecc 执行2的编译脚本即可完成编译。
http://www.hkea.cn/news/14378730/

相关文章:

  • 组织建设六个方面内容东莞seo建站优化收费
  • 镇江网站搜索优化电子商务网站建设费用
  • 网站项目建设主要内容湖南常德职业技术学校
  • 郑州做系统集成的公司网站html5个人网站源码
  • 做手机网站一般要多少钱中山市网站建设哪家好
  • dede 网站标题wordpress v4.1
  • 徐州网站建设招聘网网络建设图片
  • 网站群建设免费商城小程序源码
  • 专业网站制作公司排名衡水网站建费用
  • 怎么去跟客户谈网站建设wordpress切换 音乐
  • 南宁大型网站建设深圳设计公司最新招聘
  • seo网站是什么找人代做网站费用
  • 网站建设宣传ppt模板微网站建设定制网站建设
  • 保定网站制作网页北京网站优化体验
  • 连云港企业网站建设公司国内网站制作特点
  • 推广计划方案模板海东地区谷歌seo网络优化
  • 大连网站快速排名提升一台云服务器做多个网站
  • 英语翻译网站开发建设网站合同
  • 做网站文案用哪个软件社交网络的推广方法有哪些?
  • 广州网站开发公司专业企业网站制作怎么做
  • 莱芜租房网站南雄市建设局网站
  • 17网站一起做网店普宁池尾三门峡高端网站开发
  • 微网站开发企业选择网站程序开发外包
  • 网页设计基础考试题库含答案百度seo优化方法
  • 舒城县建设局网站东莞免费网站建站模板
  • php做公司网站h5在线编辑器
  • 二级网站建设与管理会议常州网络科技有限公司
  • 保定网站排名郑州做网站公司有多少
  • 山东专业的制作网站企业网站开发用什么语言写
  • 郑州网站推广策划建立公司网站需要注意什么