algorithms and the making of our digital selves什么意思

algorithms and the making of our digital selves什么意思,第1张

algorithms and the making of our digital selves

算法与数字自我的生成

重点词汇

algorithms演算法运算法则( algorithm的名词复数 )计算程序

making制造产生的过程成功改进的手段原料,材料“make”的现在分词

digital数字的数据的手指的指状的数字手指琴键

selves自我,自身自己( self的名词复数 )本人本性私利

在Linux中,使用make命令编译生成的可执行文件一般位于当前目录下的bin或者build目录中,具体路径取决于makefile文件中的配置。如果make成功生成了可执行文件,可以通过以下两种方式来执行:

终端中进入可执行文件所在的目录,直接输入可执行文件名即可执行,例如:

plaintext

Copy code

cd /path/to/executable

./executable

其中,./executable表示当前目录下的可执行文件。

2. 在终端中输入可执行文件的绝对路径来执行,例如:

plaintext

Copy code

/path/to/executable/executable

其中,/path/to/executable是可执行文件所在的绝对路径,executable是可执行文件的名称。

需要注意的是,在Linux中,可执行文件需要具有执行权限才能被执行。如果可执行文件没有执行权限,可以使用chmod命令来添加执行权限:

plaintext

Copy code

chmod +x /path/to/executable/executable

其中,+x表示添加执行权限,/path/to/executable/executable是可执行文件的绝对路径。

CMake Tutorial

CMake Reference

定义程序编译规则

生成可执行文件的最简单版本的 CMakeLists.txt

以上CMakeLists.txt定义的编译规则是将源文件tutorial.c编译成名为 Tutorial 的可执行文件。

一般用法是,新建一个文件夹,一般命名为 build ,在终端进入该文件夹,然后调用 cmake ../ , cmake 会在找到上级目录找到 CMakeLists.txt ,生成 makefile 和一些其它文件。

在 makefile 所在目录,调用 make 命令,会根据 makefile 对程序进行编译生成。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12121208.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存