Skip to content

Instantly share code, notes, and snippets.

View muradbu's full-sized avatar

Murad muradbu

View GitHub Profile
[global]
ioengine=libaio
direct=1
time_based
runtime=300
group_reporting
filename=/tmp/test_file
size=10G
[random-read]
@muradbu
muradbu / aur_speed_up.md
Created August 30, 2022 12:05 — forked from beci/aur_speed_up.md
Speed up compiling of AUR packages in arch linux

Edit /etc/makepkg.conf

replace in CFLAGS and CXXFLAGS to use the native one

-march=x86-64 -mtune=generic to -march=native

speed up build by set multiple threads

MAKEFLAGS="-j$(nproc)"