Merge pull request #5050 from diizzyy/patch-106

sound/lame: Remove unnecessary optimization args
This commit is contained in:
Ted Hess 2017-11-01 16:17:13 -04:00 committed by GitHub
commit 31fdaa1d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ TARGET_CFLAGS+=-msse
endif
ifeq ($(CONFIG_LAME-LIB_OPTIMIZE_SPEED),y)
TARGET_CFLAGS += $(TARGET_CFLAGS) -O3 -fomit-frame-pointer -ffast-math -fschedule-insns2
TARGET_CFLAGS += $(TARGET_CFLAGS) -O3 -ffast-math
TARGET_CFLAGS := $(filter-out -Os,$(TARGET_CFLAGS))
endif