annotate build/linux/Makefile.linux64 @ 227:61d3990482e6
fast-math seems unwise when we have rather precise regression tests to run. Also remove unintended debug-mode
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Tue, 21 May 2019 13:18:08 +0100 |
parents |
e737931b1925 |
children |
2eb74e345751 |
rev |
line source |
c@136
|
1
|
c@227
|
2 CFLAGS += -DNDEBUG -O3 -fno-exceptions -Wall -Wextra -fPIC -msse -msse2 -mfpmath=sse -ftree-vectorize -DUSE_PTHREADS
|
c@136
|
3
|
c@166
|
4 CXXFLAGS += $(CFLAGS)
|
c@136
|
5
|
c@187
|
6 LDFLAGS += -shared -Wl,-Bstatic -lqm-dsp -Wl,-z,defs -Wl,-Bdynamic -lpthread -Wl,--version-script=vamp-plugin.map
|
c@136
|
7
|
c@137
|
8 PLUGIN_EXT := .so
|
c@137
|
9
|
c@160
|
10 MAKEFILE_EXT := .linux64
|
c@160
|
11
|
c@136
|
12 include build/general/Makefile.inc
|
c@136
|
13
|