Merge branch 'asdf-bugfix' into 'master'

added :init-name to asdf:make-build

See merge request eql/EQL5!2
This commit is contained in:
P. Ruetz 2020-11-24 07:36:39 +00:00
commit 1c8cfaf797

View file

@ -11,7 +11,8 @@
(asdf:make-build "my-app"
:monolithic t
:type :static-library
:move-here "./")
:move-here "./"
:init-name "init_lib_MY_APP__ALL_SYSTEMS")
(let ((lib-name #+msvc "my_app_lib.lib"
#-msvc "libmy_app_lib.a"))
@ -22,3 +23,4 @@
#-msvc ".a")
lib-name))
(eql:qq)