积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(109)C++(75)Conan(74)区块链(30)Makefile(2)Python(1)Pascal(1)PyMuPDF(1)

语言

全部英语(76)中文(简体)(33)

格式

全部PDF文档 PDF(92)其他文档 其他(16)PPT文档 PPT(1)
 
本次搜索耗时 0.149 秒,为您找到相关结果约 109 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 区块链
  • Makefile
  • Python
  • Pascal
  • PyMuPDF
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Linux 下 Makefile 的 automake 生成全攻略

    命令来编译自己写 的程序确实是很方便。一般情况下,大家都是手工写一个简单 Makefile,如果要想写出一 个符合自由软件惯例的 Makefile 就不那么容易了。 在本文中,将给大家介绍如何使用 autoconf 和 automake 两个工具来帮助我们自动生成 符 合 自 由 软件 惯 例 的 Makefile , 这 样 就 可以 象 常 见 的 GNU 程 序 一 样 ,只 要 使 用 “. 可能还要跟着修改。这样就造成了手工书写 Makefile 的诸多问题,automake 恰好能很好地帮助我们解决这些问题。 使用 automake,程序开发人员只需要写一些简单的含有预定义宏的文件,由 autoconf 根 据一个宏文件生成 configure,由 automake 根据另一个宏文件生成 Makefile.in,再使用 configure 依据 Makefile.in 来生成一个符合惯例的 release 1,它包含了我们要用到 的 autoconf,automake。 三、从 Hello world 入手 我们从最常使用的例子程序 helloworld 开始。下面的过程如果简单地说来就是: 新建三个文件: helloworld.c、configure.in、Makefile.am 然后执行: aclocal; autoconf; automake --add-missing;
    0 码力 | 14 页 | 701.04 KB | 1 年前
    3
  • pdf文档 MuPDF 1.22.0 Documentation

    both autoconf and automake installed on your system. If this software is not already on your system (usually usr/local/bin) then it can be installed from the GNU website. Alternatively, autoconf and automake automake can be installed via Brew by running: brew install autoconf automake. 1.3 Validating your installation From the command line you should now have the following MuPDF commands available: • mupdf-gl
    0 码力 | 175 页 | 698.87 KB | 8 月前
    3
  • pdf文档 make & Makefile

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . make & Makefile . 相关命令 . . automake和autoconf: 自动配置可移植的源码包,使得源码安装 成为: “./configure --> make --> make install” 三步曲; xmkmf和imake: 从第三方软件提供的Imakefile创建Makefile
    0 码力 | 36 页 | 975.98 KB | 1 年前
    3
  • ppt文档 C++高性能并行编程与优化 - 课件 - 16 现代 CMake 模块化项目管理指南

    Makefile 构建系统: • ./configure --prefix=/usr --with-some-options # 生成 Makefile (这个 configure 脚本由 Autoconf 生 成) • make -j 8 # 8 核心编译,生成 libtest.so • sudo make install # 安装,拷贝到 /usr/lib/libtest
    0 码力 | 56 页 | 6.87 MB | 1 年前
    3
  • pdf文档 Conan 2.0 Documentation

    src main.cpp This project contains a basic configure.ac autoconf/manual/autoconf- 2.60/html_node/Writing-configure_002eac.html>_ including the fmt pkg-config dependency according to the Linux distribution, but essentially, it should include all tools (aclocal, automake, autoconf and make) that you will need to build the following example. For this example, we will not consider configure the project by running the following commands in sequence: aclocal automake --add-missing autoconf ./configure The aclocal command will read the file configure.ac and generate a new file named aclocal
    0 码力 | 652 页 | 4.00 MB | 1 年前
    3
  • pdf文档 Conan 2.1 Documentation

    src main.cpp This project contains a basic configure.ac autoconf/manual/autoconf- 2.60/html_node/Writing-configure_002eac.html>_ including the fmt pkg-config dependency according to the Linux distribution, but essentially, it should include all tools (aclocal, automake, autoconf and make) that you will need to build the following example. For this example, we will not consider configure the project by running the following commands in sequence: aclocal automake --add-missing autoconf ./configure The aclocal command will read the file configure.ac and generate a new file named aclocal
    0 码力 | 694 页 | 4.13 MB | 1 年前
    3
  • pdf文档 Conan 2.3 Documentation

    src main.cpp This project contains a basic configure.ac autoconf/manual/autoconf- 2.60/html_node/Writing-configure_002eac.html>_ including the fmt pkg-config dependency according to the Linux distribution, but essentially, it should include all tools (aclocal, automake, autoconf and make) that you will need to build the following example. For this example, we will not consider configure the project by running the following commands in sequence: aclocal automake --add-missing autoconf ./configure The aclocal command will read the file configure.ac and generate a new file named aclocal
    0 码力 | 748 页 | 4.65 MB | 1 年前
    3
  • pdf文档 Conan 2.5 Documentation

    src main.cpp This project contains a basic configure.ac autoconf/manual/autoconf- 2.60/html_node/Writing-configure_002eac.html>_ including the fmt pkg-config dependency according to the Linux distribution, but essentially, it should include all tools (aclocal, automake, autoconf and make) that you will need to build the following example. For this example, we will not consider configure the project by running the following commands in sequence: aclocal automake --add-missing autoconf ./configure The aclocal command will read the file configure.ac and generate a new file named aclocal
    0 码力 | 769 页 | 4.70 MB | 1 年前
    3
  • pdf文档 Conan 2.2 Documentation

    src main.cpp This project contains a basic configure.ac autoconf/manual/autoconf- 2.60/html_node/Writing-configure_002eac.html>_ including the fmt pkg-config dependency according to the Linux distribution, but essentially, it should include all tools (aclocal, automake, autoconf and make) that you will need to build the following example. For this example, we will not consider configure the project by running the following commands in sequence: aclocal automake --add-missing autoconf ./configure The aclocal command will read the file configure.ac and generate a new file named aclocal
    0 码力 | 718 页 | 4.46 MB | 1 年前
    3
  • pdf文档 Conan 2.4 Documentation

    src main.cpp This project contains a basic configure.ac autoconf/manual/autoconf- 2.60/html_node/Writing-configure_002eac.html>_ including the fmt pkg-config dependency according to the Linux distribution, but essentially, it should include all tools (aclocal, automake, autoconf and make) that you will need to build the following example. For this example, we will not consider configure the project by running the following commands in sequence: aclocal automake --add-missing autoconf ./configure The aclocal command will read the file configure.ac and generate a new file named aclocal
    0 码力 | 769 页 | 4.69 MB | 1 年前
    3
共 109 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 11
前往
页
相关搜索词
LinuxMakefileautomake全攻攻略全攻略MuPDF1.22DocumentationmakeC++高性性能高性能并行编程优化课件16Conan2.02.12.32.52.22.4
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩