impc:aot:add-win-link-library   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/llvmti.xtm

Implementation

(define impc:aot:add-win-link-library
  (lambda (libname)
    (if (not (string-contains? libname "opengl32"))
        (set! *impc:aot:win-link-libraries*
              (cons (regex:replace (sanitize-platform-path libname) "dll$" "lib")
                    *impc:aot:win-link-libraries*)))))


Back to Index