From ccd975345a43c4d88c8ce9f60d485140fd56d978 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 30 Mar 2015 22:19:24 -0400 Subject: [PATCH] Changed static compilation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b2208bc6..8dcdb93a 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ libcyclone.a: runtime.c runtime.h # debug compilation using static lib .PHONY: debug debug: - gcc -static test.c -L. -lcyclone -I. -g -o test + gcc test.c -L. -lcyclone -I. -g -o test .PHONY: debug2 debug2: libcyclone.so.1 gcc test.c -L. -lcyclone -I. -g -o test