Mercurial > hg > silvet
annotate 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 |
rev | line source |
---|---|
Chris@280 | 1 |
Chris@280 | 2 TOOLPREFIX ?= i586-mingw32msvc- |
Chris@280 | 3 CXX = $(TOOLPREFIX)g++ |
Chris@280 | 4 CC = $(TOOLPREFIX)gcc |
Chris@280 | 5 LD = $(TOOLPREFIX)g++ |
Chris@280 | 6 AR = $(TOOLPREFIX)ar |
Chris@280 | 7 RANLIB = $(TOOLPREFIX)ranlib |
Chris@280 | 8 |
Chris@289 | 9 CXXFLAGS := $(CXXFLAGS) -DUSE_OWN_ALIGNED_MALLOC -DNDEBUG -O3 -msse -msse2 -ffast-math -mfpmath=sse -Wall -Wextra |
Chris@289 | 10 PLUGIN_LDFLAGS := $(LDFLAGS) -shared -static -Wl,--retain-symbols-file=vamp-plugin.list |
Chris@280 | 11 |
Chris@280 | 12 VAMPSDK_DIR := ../vamp-plugin-sdk |
Chris@280 | 13 PLUGIN_EXT := .dll |
Chris@280 | 14 |
Chris@280 | 15 MAKEFILE_EXT := .mingw32 |
Chris@280 | 16 |
Chris@280 | 17 include Makefile.inc |
Chris@280 | 18 |