mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Only compile library as static
This commit is contained in:
parent
9f4fcc8d65
commit
b196f4b7fe
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@
|
||||||
(if cc?
|
(if cc?
|
||||||
(system
|
(system
|
||||||
;; -I is a hack, real answer is to use 'make install' to place .h file
|
;; -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
|
;; Handle command line arguments
|
||||||
(let ((args (command-line-arguments))) ;; TODO: port (command-line-arguments) to husk??
|
(let ((args (command-line-arguments))) ;; TODO: port (command-line-arguments) to husk??
|
||||||
|
|
Loading…
Add table
Reference in a new issue