makepkg.conf question #198
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Now I have the default makepkg.conf with
Since I have some local and AUR packages,should I modify it with
Or 03 instead of 02? CARCH value is right?
Note: I have modified pacman.conf adding Architecture = x86_64 x86_64_v3
If you just want to build local packages, you do not need to modify
CARCH
or pacman'sArchitecture
. Modifying-march
is enough.If you want to build with
-O3
instead of-O2
is your decision to make. You essentially trade more compile-time and a potentially bigger binary for potentially more optimization.You can also have a look at ALHP's makepkgs: https://alhp.dev/makepkg/
Ok. Thanks for the clarification.