首页 > 系统相关 >Ubuntu 18.04 编译 liburing

Ubuntu 18.04 编译 liburing

时间:2023-02-01 13:11:06浏览次数:60  
标签:git liburing 18.04 program build Ubuntu

First, you have to clone the repo:

git clone https://github.com/axboe/liburing.git

Then you can build:

make -C ./liburing

After that, you can compile your program.c with liburing:

gcc program.c -o ./program -I./liburing/src/include/ -L./liburing/src/ -Wall -O2 -D_GNU_SOURCE -luring 


内容来自:c++ - how to build liburing - Stack Overflow

标签:git,liburing,18.04,program,build,Ubuntu
From: https://www.cnblogs.com/62mins/p/17082205.html

相关文章

  • ubuntu初始化登录jenkins提示Error错误
    安装环境:jdk使用的是二进制安装的jdk11https://www.oracle.com/java/technologies/downloads/#java11jenkins使用的是jenkins2.2774(deb包)版本https://mirrors.jenk......
  • ubuntu卡顿的有效解决方法
    用了几个月的ubuntu最近发现打开网页多了或者运行的软件太多了桌面老是卡顿打开终端的时候也是贼慢对于强迫症显然是不能接受的首先查询系统里面的swappiness$cat......
  • ubuntu 中 安装ssh服务
     001、系统root@DESKTOP-A31BQ38:~#lsb_release-aNoLSBmodulesareavailable.DistributorID:UbuntuDescription:Ubuntu22.04.1LTSRelease:22......
  • Ubuntu安装NextCloud
    在UbuntuServer22.04环境下安装。sudosnapinstallnextcloudsudonextcloud.manual-installUsernamePassword(NextCloud登陆用户)sudonextcloud.occconfig:system:......
  • ubuntu18安装gdbm并使用
    查看系统默认的dbm函数接口(posix)$mandbm_open可以看到需要头文件ndbm.h,但到真正编译的时候,你就会发现没有此头文件的! 安装gdbm开发库(兼容dbm和ndbm)$su......
  • 【KAWAKO】TVM-在ubuntu服务器上的安装
    目录下载源码安装依赖库修改config.cmake文件编译安装python库添加tophub简单验证官方的安装教程在这里下载源码从DownloadPage中下载下来的源码是0.8版本的,亲测该版......
  • ubuntu 非root用户启动docker
    启动运行minikubeminikubestart--image-mirror-country='cn'......
  • Windows11 WSL 打开Ubuntu 报错 WslRegisterDistribution failed with error: 0x80070
    Windows11WSL打开Ubuntu报错WslRegisterDistributionfailedwitherror:0x800701bc 1、背景说明Windows在不安装虚拟化软件的情况下,如果想安装Linux子系统,可以......
  • Ubuntu 22.04.1 安装 Redis 7.0.8
    Ubuntu22.04.1安装Redis7.0.8 1、获取Redis安装文件curl-fsSLhttps://packages.redis.io/gpg|sudogpg--dearmor-o/usr/share/keyrings/redis-archive-......
  • STM32F407IGHX与Ubuntu20.04串口通信
    STM32F407IGHX与Ubuntu20.04串口通信为了让RobomasterC板(这块板用的是STM32F407IGHX的芯片)能与上位机进行通讯。我最近翻了不少博客和CSDN文章,看到了很多文章存在一些......