Enable relaxed relocations when building certain object files for x86_64.

This commit is contained in:
Siva Chandra Reddy 2019-04-02 10:18:01 -07:00 committed by Fangrui Song
parent 0337af1396
commit 738baca865

View File

@ -6,6 +6,9 @@ ifeq ($(with-clang),yes)
# allowed. (-mavx512 is the preferred option but does not work in 5.0)
ASFLAGS-.o += -march=knl
ASFLAGS-.os += -march=knl
# We want clang to generate relaxed relocations so that they can work with
# static-pie as well.
ASFLAGS-.o += -Wa,-mrelax-relocations=yes
endif
ifeq ($(subdir),csu)