annotate build/mingw32/Makefile.mingw32 @ 515:08bcc06c38ec tip master

Remove fast-math
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 28 Jan 2020 15:27:37 +0000
parents cf08ede39abf
children
rev   line source
c@403 1
c@403 2 TOOLPREFIX ?= i586-mingw32msvc-
c@403 3 CXX = $(TOOLPREFIX)g++
c@403 4 CC = $(TOOLPREFIX)gcc
c@403 5 LD = $(TOOLPREFIX)g++
c@403 6 AR = $(TOOLPREFIX)ar
c@403 7 RANLIB = $(TOOLPREFIX)ranlib
c@403 8
c@403 9 CFLAGS := -I../vamp-plugin-sdk -Ibuild/mingw32 -Iinclude -DNDEBUG -O3 -msse -msse2 -Wall -Wextra
c@403 10 CXXFLAGS := $(CFLAGS)
c@403 11
c@403 12 MAKEFILE_EXT := .mingw32
c@403 13
c@403 14 include build/general/Makefile.inc