logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

CMake cross compile

1. modify the variables "CMAKE_C_COMPILER" and "CMAKE_CXX_COMPILER", then you can do cross compile with cmakefor example:PROJECT(test_cmake)SET(CMAKE_C_COMPILERarm-linux-gnueabi-gcc)## SET(

linux进程的基本属性

linux进程的基本属性1. linux环境下,系统运行的第一个进程名字叫 init , pid = 1,由内核产生。其余所有的进程都是通过 fork()函数产生(vfork() 也算吧)。2. 常用进程的属性有:pid   ppid   pgid  uideuid gid egid3. 进程资源由两部分组成: 内核空间资源,用户空间资源内核空间资源

到底了