;;;; coops-utils.setup -*- Hen -*- (use setup-helper-mod) (define *EGG-NAME* 'coops-utils) (verify-extension-name *EGG-NAME*) (define *EGG-CSC-OPTIONS* '( -O3 -d2 -local -fixnum-arithmetic -no-procedure-checks) ) #; (setup-shared-extension-module 'closure-introspection (extension-version "1.1.0") #:types? #t #:inline? #t #:compile-options `(,@*EGG-CSC-OPTIONS* -inline-limit 240) ) ;; Module (setup-shared-extension-module 'coops-introspection (extension-version "1.1.0") #:types? #t #:inline? #t #:compile-options `(,@*EGG-CSC-OPTIONS* -inline-limit 240) ) (setup-shared-extension-module 'coops-extras (extension-version "1.1.0") #:types? #t #:inline? #t #:compile-options *EGG-CSC-OPTIONS* ) (setup-shared-extension-module 'coops-introspection-tinyclos (extension-version "1.1.0") #:types? #t #:inline? #t #:compile-options *EGG-CSC-OPTIONS* ) ;; Egg Module (setup-shared-extension-module *EGG-NAME* (extension-version "1.1.0") #:types? #t #:inline? #t #:compile-options *EGG-CSC-OPTIONS* )