data distribution simulator install

这篇具有很好参考价值的文章主要介绍了data distribution simulator install。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

data distribution simulator install


基本安装


configure

  • 系统变量->用于为包中的每个目录创建makefile
  • 创建’.h’包含系统变量
  • shell script ‘config.status’->用于重新创建当前配置
  • 程序autoconf用configure.ac创建configure
  • 简单编译该包的方式
    • cd 源目录
    • ./configure
    • make
    • make check
    • make install
    • make clean: 用于移走二进制和目标文件
    • make distclean:用于移走’configure’创建的文件(因此可以为不同类型的计算机编译该软件包)
    • make maintainer-clean:用于包开发者,如果使用它,代表你可能不得不使用各种其他程序来重新生成发行版附带的文件

编译器和选择


  • ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
  • ./configure --help

为多个架构编译


make版本需要支持’VPATH’变量,例如GNU ‘make’

如果没有’VPATH’,则在为了一种架构安装包之后,为另一种架构重配置的时候,需要使用’make disclean’

安装名字


  • Make install:
    • `/usr/local/bin’
    • `/usr/local/include’
    • 可以通过’configure’选择’–prefix=PREFIX’来指定非’/usr/local’的安装前缀
    • 可以为特定于体系结构的文件和体系结构无关的文件指定单独的安装前缀。如果你将选项——exec-prefix=PREFIX 传递给configure ,该包使用PREFIX作为安装程序和库的前缀。文档和其他数据文件仍然使用常规前缀。
    • 此外,如果你使用不寻常的目录布局,你可以提供像——bindir=DIR 这样的选项来为特定类型的文件指定不同的值。运行configure——help 获取你可以设置的目录列表以及它们包含的文件类型。
    • 如果程序包支持它,你可以通过给configure 选项——program-prefix= prefix ——program-suffix= suffix ,使程序在其名称上安装一个额外的前缀或后缀。

可选特征


  • 针对X window system,configure如果不能自动找到X include和library文件,可以使用’configure’的--x-includes=DIR' and–x-libraries=DIR’来指定他们的位置

指定系统类型


  • 一些’configure’不能自动明白的特征,需要根据运行包的机器类型来确定
  • 如果’configure’输出it cannot guess the machine type,给定’–build=TYPE’, TYPE的值可以参考’configure.sub’
  • ‘–target=TYPE’: building compiler tools for cross-compiling
  • ‘–host=TYPE’: use a cross compiler

共享默认


  • 'configure.site’是一个site shell script,用于给定’configure’脚本共享的默认值

定义变量


没有在site shell脚本中定义的变量可以在传递给configure 的环境中设置。

一般方式是:

  • ‘configure’ command line, using `VAR=value’
    • ./configure CC=/usr/local2/bin/gcc(gcc被使用作为C编译器,除非在site shell script中被重覆盖)
    • /bin/bash ./configure CONFIG_SHELL=/bin/bash(这里的CONFIG_SHELL=/bin/bash 操作数会导致后续的配置相关脚本被/bin/bash 执行)

‘configure’ Invocation


`configure’ recognizes the following options to control how it operates.

`–help’

`-h’

​ Print a summary of the options to `configure’, and exit.

`–version’

`-V’

​ Print the version of Autoconf used to generate the `configure’

​ script, and exit.

`–cache-file=FILE’

​ Enable the cache: use and save the results of the tests in FILE,

​ traditionally config.cache'. FILE defaults to /dev/null’ to

​ disable caching.

`–config-cache’

`-C’

​ Alias for `–cache-file=config.cache’.

`–quiet’

`–silent’

`-q’

​ Do not print messages saying which checks are being made. To

​ suppress all normal output, redirect it to `/dev/null’ (any error

​ messages will still be shown).

`–srcdir=DIR’

​ Look for the package’s source code in directory DIR. Usually

​ `configure’ can determine that directory automatically.

`configure’ also accepts some other, not widely useful, options. Run

`configure --help’ for more details.文章来源地址https://www.toymoban.com/news/detail-421358.html

到了这里,关于data distribution simulator install的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Xcode 离线使用命令行手动添加 iOS / watchOS 模拟器 Xcode install Simulator from the command line

    在 Xcode 中可以使用 Settings - Platforms 来下载和管理各种设备的模拟器。 不过在很多时候,因为网络或者其他原因需要手动下载模拟器的 dmg 文件并且手动添加模拟器,可以使用如下命令来手动添加。 1. 去 Apple Developer 下载相应设备的 Xcode 和模拟器文件,这里以 Xcode 15.0 和 

    2024年02月05日
    浏览(48)
  • 使用八叉树模拟水和烟雾 Simulating Water and Smoke with an Octree Data Structure 论文阅读笔记

    原文: Losasso, Frank, Frédéric Gibou, and Ron Fedkiw. “Simulating water and smoke with an octree data structure.” Acm siggraph 2004 papers. 2004. 457-462. 这篇文章扩展了 [Popinet 2003] 的工作,拓展到表面自由流,并且使得八叉树不受限制 自适应网格划分的一个缺点是,它的模板不是均匀的,进而导致泊

    2024年02月19日
    浏览(41)
  • 【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法

    1)System.Data.SQLite 尚未安装在您的计算机上 2)System.Data.SQLite 尚未正确配置 【注意】CodeSmith Generator 被编译为 AnyCPU。这意味着当您在Visual Studio外部启动Generator时,Generator将作为64位进程运行。如果从 Visual Studio(32 位进程)中生成,则 CodeSmith 生成器库将作为 32 位进程运行。

    2024年02月09日
    浏览(51)
  • vue2bug解决:in ./src/views/install/data-base/scss/menu.scss Module Warning (from ./node_modules/postc

    in ./src/views/install/data-base/scss/menu.scss Module Warning (from ./node_modules/postcss-loader/src/index.js): Warning (14:5) start value has mixed support, consider using flex-start instead @ ./node_modules/css-loader/dist/cjs.js??ref–8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref–8-oneOf-1

    2024年02月03日
    浏览(59)
  • instruction simulation

    archc start https://xueshu.baidu.com/usercenter/paper/show?paperid=dea8860fee82f61fd5284ef7e8d0faec https://xueshu.baidu.com/usercenter/paper/show?paperid=1033a72a5b6c69374f816ba9a49875e1 RVVM

    2024年02月10日
    浏览(45)
  • 手动下载/安装Xcode的simulator

    Xcode某个版本更新之后不带iOS的Simulator,导致全新下载一个Xcode后没法编译项目.公司的网又很坑,每次断掉点重试都重新下载,导致完全没法下下来.特别影响工作进度. 1.获取simulator包下载地址 1.1 Apple后台 https://developer.apple.com/download/all/?q=Xcode 1.2 手动 在LaunchPad/聚焦搜索中搜索控

    2024年02月05日
    浏览(52)
  • Elasticsearch:Simulate ingest API

    Ingest pipeline 为我们摄入数据提供了极大的方便。在我之前的文章中,有非常多的有关 ingest pipeline 的文章。请详细阅读文章 “Elastic:开发者上手指南”。针对一组提供的文档执行摄取管道,可以选择使用替代管道定义。 Simulate ingest API 旨在用于故障排除或管道开发,因为它

    2024年01月24日
    浏览(32)
  • 一款在线电路仿真小工具——Circuit Simulator

    目录 一、前言 二、 网址 三、常用设置及注意事项 1.常用设置 2.注意事项 四、举例说明 五、其他          “Circuit Simulator ”是一个免费的在线电路仿真工具,可以模拟门电路、运算放大器、555、单稳态等多种功能,动态显示模拟效果和电流方向,并显示波形和分析状态。

    2023年04月15日
    浏览(28)
  • 解决Vivado仿真卡在executing simulate step

    问题描述: 偶然打开vivado仿真时,一直卡在executing simulate step,卡的时间不等,过一段时间之后,vivado直接闪退。 解决办法: 1、强制关闭vivado软件。 2、虽然vivado软件关了,但是系统后台还在运行着xsimk进程,需要打开资源监视器,搜索xsimk进程,再强制关闭所有与之有关的

    2024年02月11日
    浏览(42)
  • 在VIVADO——SIMULATION仿真中将目标数据保存至文件

      相关代码展示,存储的目标变量为 PRNG_val ;

    2024年01月22日
    浏览(49)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包