Added options for standard PC (Intel) to Makefile

pull/1/head
Holger Wirtz 7 years ago
parent e5d053d06e
commit a94f560706
  1. 12
      src/Makefile

@ -1,5 +1,5 @@
BUNDLE=dexed.lv2
INSTALL_DIR=/zynthian/zynthian-plugins/lv2
INSTALL_DIR=/zynthian/zynthian-plugins/mod-lv2
TARGET=dexed.so
OBJ=fm_core.o env.o lfo.o dx7note.o sin.o pitchenv.o fm_op_kernel.o freqlut.o exp2.o EngineMkI.o EngineOpl.o PluginFx.o trace.o
CFLAGS=-fPIC -DPIC -std=c++11 -I. -I/usr/local/include/lvtk-2 -DLVTK_DEBUG=false
@ -12,6 +12,12 @@ ifeq ($(ARCH),)
endif
machine = $(shell sh -c 'uname -m 2>/dev/null || echo unknown')
# Intel-PC
ifneq (,$(findstring x86,$(machine)))
CPU =
FPU =
endif
# Raspberry Pi B+, Zero, etc
ifneq (,$(findstring armv6l,$(machine)))
CPU = -mcpu=arm1176jzf-s
@ -48,8 +54,8 @@ ifeq ($(DEBUG), 1)
CXXFLAGS += -DDEBUG $(CFLAGS) $(CFLAGS_OPTIONS)
endif
else
#CXXFLAGS += -Ofast $(CFLAGS) $(CPU) $(FPU)
CXXFLAGS += $(CFLAGS) $(CFLAGS_OPTIONS) -O3 -mcpu=cortex-a7 -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -mvectorize-with-neon-quad
#CXXFLAGS += $(CFLAGS) $(CFLAGS_OPTIONS) -O3 -mcpu=cortex-a7 -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -mvectorize-with-neon-quad
CXXFLAGS += $(CFLAGS) $(CFLAGS_OPTIONS) -O3
endif
all: $(BUNDLE) Makefile

Loading…
Cancel
Save