]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
Fix linking under linux. liblua requires libld on linux.
authorpwpiwi <pwpiwi@users.noreply.github.com>
Fri, 29 May 2015 16:14:36 +0000 (18:14 +0200)
committerpwpiwi <pwpiwi@users.noreply.github.com>
Fri, 29 May 2015 16:18:10 +0000 (18:18 +0200)
client/Makefile

index 7d03b101301768797d8cc53ddd9483b85f56916b..f9645194829c888a825da7dc545fee5f0af9710a 100644 (file)
@@ -36,8 +36,8 @@ else ifeq ($(platform),Darwin)
 else
     CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
     QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
+    LUALIB +=  -ldl
     MOC = $(shell pkg-config --variable=moc_location QtCore)
-    LDLIBS +=  -ldl
     # Below is a variant you can use if you have problems compiling with QT5 on ubuntu. see http://www.proxmark.org/forum/viewtopic.php?id=1661 for more info. 
     #MOC = /usr/lib/x86_64-linux-gnu/qt4/bin/moc
     LUAPLATFORM = linux
@@ -121,7 +121,7 @@ all: lua_build $(BINS)
 all-static: LDLIBS:=-static $(LDLIBS)
 all-static: snooper cli flasher fpga_compress
 
-proxmark3: LDLIBS+=$(QTLDLIBS) $(LUALIB)
+proxmark3: LDLIBS+=$(LUALIB) $(QTLDLIBS)
 proxmark3: $(OBJDIR)/proxmark3.o $(COREOBJS) $(CMDOBJS) $(QTGUI)
        $(CXX) $(CXXFLAGS) $^ $(LDLIBS) -o $@
 
Impressum, Datenschutz