From b196f4b7fe190e255edaf3ce7316b409650c5eac Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 30 Mar 2015 22:19:11 -0400 Subject: [PATCH] Only compile library as static --- cyclone.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyclone.scm b/cyclone.scm index c0e49719..ef9c989a 100644 --- a/cyclone.scm +++ b/cyclone.scm @@ -160,7 +160,7 @@ (if cc? (system ;; -I is a hack, real answer is to use 'make install' to place .h file - (string-append "gcc -static " src-file " -L. -lcyclone -I. -g -o " exec-file))))) + (string-append "gcc " src-file " -L. -lcyclone -I. -g -o " exec-file))))) ;; Handle command line arguments (let ((args (command-line-arguments))) ;; TODO: port (command-line-arguments) to husk??