Only compile library as static

This commit is contained in:
Justin Ethier 2015-03-30 22:19:11 -04:00
parent 9f4fcc8d65
commit b196f4b7fe

View file

@ -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??