diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-07-01 16:39:47 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-07-03 15:32:26 +0200 |
commit | 41e11bdc6722a4a024b76bb0d3246f5de4ddc781 (patch) | |
tree | 931cc860525f2d90737262473b14738977e00f77 /arch | |
parent | 90ad4b8692129ec9624e00801d7b89b511d20a3d (diff) |
Fixed configure applying -march flags globally for ARM.
Fixed -mfpu=neon not being applied on arm|arm7 if available.
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/arm/Makefile.in b/arch/arm/Makefile.in index 1db301a..a728d5a 100644 --- a/arch/arm/Makefile.in +++ b/arch/arm/Makefile.in @@ -6,6 +6,7 @@ CC= CFLAGS= SFLAGS= INCLUDES= +ACLEFLAG= NEONFLAG= SUFFIX= @@ -40,10 +41,10 @@ chunkset_neon.lo: $(CC) $(SFLAGS) $(NEONFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/chunkset_neon.c crc32_acle.o: - $(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c + $(CC) $(CFLAGS) $(ACLEFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c crc32_acle.lo: - $(CC) $(SFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c + $(CC) $(SFLAGS) $(ACLEFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c slide_neon.o: $(CC) $(CFLAGS) $(NEONFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_neon.c @@ -52,10 +53,10 @@ slide_neon.lo: $(CC) $(SFLAGS) $(NEONFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_neon.c insert_string_acle.o: - $(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/insert_string_acle.c + $(CC) $(CFLAGS) $(ACLEFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/insert_string_acle.c insert_string_acle.lo: - $(CC) $(SFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/insert_string_acle.c + $(CC) $(SFLAGS) $(ACLEFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/insert_string_acle.c mostlyclean: clean clean: |