From: Steinar H. Gunderson Date: Mon, 25 Jul 2016 12:18:53 +0000 (+0200) Subject: Remove -march=native; it is no longer really needed, now that we have function multiv... X-Git-Tag: 1.3.3~18 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=64e995fbd199e91704e726b7e0eeee65adb81b1a;p=nageru Remove -march=native; it is no longer really needed, now that we have function multiversioning in bmusb. (Movit still benefits, though.) --- diff --git a/Makefile b/Makefile index a88b7f6..100df44 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CXX=g++ INSTALL=install PKG_MODULES = Qt5Core Qt5Gui Qt5Widgets Qt5OpenGLExtensions Qt5OpenGL libusb-1.0 movit lua52 libmicrohttpd epoxy x264 -CXXFLAGS := -O2 -march=native -g -std=gnu++11 -Wall -Wno-deprecated-declarations -fPIC $(shell pkg-config --cflags $(PKG_MODULES)) -pthread -DMOVIT_SHADER_DIR=\"$(shell pkg-config --variable=shaderdir movit)\" -Idecklink/ +CXXFLAGS := -O2 -g -std=gnu++11 -Wall -Wno-deprecated-declarations -fPIC $(shell pkg-config --cflags $(PKG_MODULES)) -pthread -DMOVIT_SHADER_DIR=\"$(shell pkg-config --variable=shaderdir movit)\" -Idecklink/ LDFLAGS=$(shell pkg-config --libs $(PKG_MODULES)) -lEGL -lGL -pthread -lva -lva-drm -lva-x11 -lX11 -lavformat -lavcodec -lavutil -lswscale -lavresample -lzita-resampler -lasound -ldl # Qt objects