diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-03-23 02:38:21 +0000 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-03-23 02:38:21 +0000 |
commit | b18326a75078530df7712667f41b4ea354e1da3e (patch) | |
tree | ae5612f71f3f7da3ad669f21fc84cbb42568061d /compile.bat | |
parent | 437b9952b29ba42dbb1036b29fb431a635b05a60 (diff) |
Work around plugin unloading bug in old branches
This also introduces some stuff for interacting with the current plugin
list. Other plugin management utilies are Coming Soon...
Diffstat (limited to 'compile.bat')
-rw-r--r-- | compile.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.bat b/compile.bat index b2a880a..da1e2d2 100644 --- a/compile.bat +++ b/compile.bat @@ -49,7 +49,7 @@ call :cc src/kv.c || exit /b call :cc src/rinput.c || exit /b
call :cc src/sst.c || exit /b
call :cc src/udis86.c || exit /b
-clang -m32 -shared -O2 -flto -fuse-ld=lld -Wl,/implib:.build/sst.lib,/Brepro ^
+clang -m32 -fuse-ld=lld -shared -O2 -flto -Wl,/IMPLIB:.build/sst.lib,/Brepro ^
-L.build -luser32 -ladvapi32 -lshlwapi -ltier0 -lvstdlib -o sst.dll%objs% .build/dll.res || exit /b
:: get rid of another useless file (can we just not create this???)
del .build\sst.lib
|