Go to https://www.kernel.org and select a kernel to download, e.g.:wget -c https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.11.4.tar.xzcp linux-3.11.4.tar.xz /usr/srccd /usr/srctar xfv linux-3.11.
原创
2014-05-16 12:18:50
570阅读
xmpp
转载
2014-12-04 08:39:00
79阅读
2评论
Apache HTTP server 2.2.x 1.Accurate time keeping NTP ########### 2.Perl 5 [OPTIONAL] For some
原创
2011-07-08 13:57:41
248阅读
make O=/root/kernel modulesmake O=/root/kernel modules_install INSTALL crypto/crc32c.ko INSTALL crypto/hmac.ko INSTALL crypto/sha1_generic.ko INSTALL drivers/acpi/button.ko&nbs
原创
2014-06-27 10:26:29
868阅读
编译安装MySQL-5.5cmake的重要特性之一是其独立于源码(out-of-source)的编译功能,即编译工作可以在另一个指定的目录中而非源码目录中进行,这可以保证源码目录不受任何一次编译的影响,因此在同一个源码树上可以进行多次不同的编译,如针对于不同平台编译。编译安装MySQL-5.5一、安装cmake跨平台编译器# tar xf cmake-2.8.8.tar.gz# cd cmake-
原创
2016-04-05 22:43:11
456阅读
Compiling vs Transpiling While searching about the difference, I came across these definitions: Compiling is the general term for taking source code w
转载
2021-01-21 15:01:00
100阅读
2评论
https://stackoverflow.com/questions/6425643/compiling-freetype-for-iphoneI used
原创
2023-05-22 17:15:42
117阅读
什么是交叉编译呢,简单地说,就是在一个平台上生成另一个平台上的可执行代码。这里需要注意的是所谓
平台,实际上包含两个概念:体系结构(Architecture)、操作系统(Operating System)。同一个体系结
构可以运行不同的操作系统;同样,同一个操作系统也可以在不同的体系结构上运行。举例来说,我们常说
的x86 Linux平台实际上是Intel x86体系结构和Linux for x
转载
精选
2009-07-16 10:23:21
727阅读
什么是交叉编译呢,简单地说,就是在一个平台上生成另一个平台上的可执行代码。这里需要注意的是所谓 平台,实际上包含两个概念:体系结构(Architecture)、操作系统(Operating System)。同一个体系结 构可以运行不同的操作系统;同样,同一个操作系统也可以在不同的体系结构上运行。 嵌入式系统往往资源都是很有限的,如果其资源和我们平常用的桌面计算机(在嵌入式系统开发中我们称之为主机,host machine)一样,那我想可能就不存在交叉编译这么一说了。最为典型的是,嵌入式系统的内存往往是几兆字节,且只有FLASH而没有硬盘这种大容量存储设备。也就是说在这种资源有限的环境中,...
转载
2013-03-10 23:51:00
261阅读
2评论
# Compiling a COMSOL Java file
COMSOL Multiphysics is a powerful simulation software that allows users to model and simulate various physical phenomena. One of the features of COMSOL is its ability t
原创
2024-05-06 05:51:48
22阅读
Inline variable declaration not compiling error CS1525: Invalid expression term 'string' error CS1003: Syntax error, ',' expected In case the above an ...
转载
2021-08-27 15:53:00
290阅读
2评论
问答题什么是渲染流水线? P6 《Real-Time Rendering, Third Edition》一书中将一个渲染流程分为3个阶段:应用阶段、几何阶段、光栅化阶段。 1)应用阶段: 在这一阶段中,开发者有3个主要任务。首先准备好场景数据集,例如摄像机、光源等;其次,为了提高渲染性能,往往需要做一个粗粒度剔除,把不可见的物体剔除出去;最后,需要设置好每个模型的渲染状态,包括但不限于材质、纹理、
When we cross compiling coreutils, there is an problem of generating man pages, because the source script use the binaries generated by make process t
转载
2017-08-14 09:21:00
103阅读
2评论
I just wanted to try out using OpenCL under Windows.Abstract: I got an "undefined reference to" error when I tried to compile (using the command gcc my.o -o my.exe -L "C:\Program Files (x86)
转载
2021-08-12 11:37:53
554阅读
OSCP Security Technology - Compiling an Exploit Search "samba 2.2.1a exploit". Download the source code file from the following website. https://www.e
转载
2021-07-07 19:00:00
278阅读
2评论
# MySQL Compiling 补丁下载教程
## 介绍
在进行MySQL编译补丁下载之前,我们先来了解一下整个流程。下面是一张表格展示了MySQL编译补丁下载的步骤:
| 步骤 | 动作 |
| ---| --- |
| 步骤1 | 确认需要补丁的版本 |
| 步骤2 | 下载MySQL源代码 |
| 步骤3 | 确认需要下载的补丁 |
| 步骤4 | 下载补丁文件 |
| 步骤5 |
原创
2024-01-04 04:09:34
37阅读
Time and frame rate managementTime类: Time script reference page.一些常见的属性有:
Time.time 返回从游戏开始经历的时间.
Time.deltaTime 返回从上帧结束到现在经历的时间,和帧率成反比
Time.timeScale 控制时间流逝的因子
Time.fixedDeltaTime
https://github.com/waf-project/waf
转载
2022-02-25 10:21:09
68阅读
At Clock we typically spend our time developing JavaScript and PHP, however, occasionally Flash presents itself as the most suitable platform for cert...
转载
2014-11-05 12:58:00
69阅读
2评论
Compiler - 编译器
intermediate representation,IR:中间表示
front end,FE:前端
middle end,ME:中端
back end,BE:后端The first compiler was build by John Backum and his group between 1954 and 1957 at IBM. 编译器就是