Skip to content

Instantly share code, notes, and snippets.

View muradbu's full-sized avatar
👋
For hire

Murad muradbu

👋
For hire
View GitHub Profile
@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)"