Mercurial > hg > silvet
view Makefile.mingw32 @ 317:92293058368a livemode
Some small speed improvements for live mode (+ don't use async for it when there's only one template in the EM process: the overhead isn't worth it)
author | Chris Cannam |
---|---|
date | Tue, 28 Apr 2015 13:55:32 +0100 |
parents | d632c9b9b858 |
children | 50fde8eecba5 |
line wrap: on
line source
TOOLPREFIX ?= i586-mingw32msvc- CXX = $(TOOLPREFIX)g++ CC = $(TOOLPREFIX)gcc LD = $(TOOLPREFIX)g++ AR = $(TOOLPREFIX)ar RANLIB = $(TOOLPREFIX)ranlib CXXFLAGS := $(CXXFLAGS) -DUSE_OWN_ALIGNED_MALLOC -DNDEBUG -O3 -msse -msse2 -ffast-math -mfpmath=sse -Wall -Wextra PLUGIN_LDFLAGS := $(LDFLAGS) -shared -static -Wl,--retain-symbols-file=vamp-plugin.list VAMPSDK_DIR := ../vamp-plugin-sdk PLUGIN_EXT := .dll MAKEFILE_EXT := .mingw32 include Makefile.inc