From 15a14d216892b554c7fd296cd0eab5b23b7b8aaa Mon Sep 17 00:00:00 2001 From: jcli Date: Thu, 28 Jul 2016 17:59:06 -0700 Subject: [PATCH] Revert "Make client build in 64 using multilib" This reverts commit 3f0324261d9b377bbfce6593b6c734360e8ba292. --- client/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/makefile b/client/makefile index 2ee8144..68cf150 100644 --- a/client/makefile +++ b/client/makefile @@ -8,7 +8,7 @@ OBJS := main.cpp DialServer.cpp DialDiscovery.cpp DialConformance.cpp DialClient # You may not need all these libraries. This example uses a build of curl that needs crypto, ssl, cares, and zlib dialclient: $(OBJS) ${includes} - $(CC) -Wall -g $(OBJS) $(INCLUDES) $(LDFLAGS) -ldl -lpthread -lcurl -lz -lcrypto -lssl -lcares -o dialclient + $(CC) -Wall -Werror -g $(OBJS) $(INCLUDES) $(LDFLAGS) -ldl -lpthread -lcurl -lz -lcrypto -lssl -lcares -m32 -o dialclient clean: rm -f *.o dialclient