drop target CPU for aarch64 to cortex-a53 instead of cortex-a73

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-09-06 19:02:04 -04:00
parent f521f88daf
commit 909eeac5b0
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ lib.optionalAttrs stdenv.hostPlatform.isStatic {
[ "-C" "target-cpu=x86-64-v2" ]
++ lib.optionals
stdenv.targetPlatform.isAarch64
[ "-C" "target-cpu=cortex-a55" ] # cortex-a55 == ARMv8.2-a
[ "-C" "target-cpu=cortex-a53" ] # cortex-a53 == ARMv8-A
# This disables PIE for static builds, which isn't great in terms
# of security. Unfortunately, my hand is forced because nixpkgs'
# `libstdc++.a` is built without `-fPIE`, which precludes us from