diff options
| -rw-r--r-- | DDKit/x86_64.make | 2 | ||||
| -rw-r--r-- | SCIKit/makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/DDKit/x86_64.make b/DDKit/x86_64.make index f261d432..05b136d3 100644 --- a/DDKit/x86_64.make +++ b/DDKit/x86_64.make @@ -7,7 +7,7 @@ CC=x86_64-w64-mingw32-gcc INC=-I./ -I../
FLAGS=-ffreestanding -shared -std=c17 -std=c++20 -D__KERNEL__ -fno-rtti -fno-exceptions -D__DDK_AMD64__ -Wl,--subsystem=17
VERSION=-DcDDKVersionLowest=1 -DcDDKVersionHighest=1
-OUTPUT=libDDK.so
+OUTPUT=libDDK.lib
.PHONY: x86_64-build
x86_64-build:
diff --git a/SCIKit/makefile b/SCIKit/makefile index 2989d18c..ae08cce2 100644 --- a/SCIKit/makefile +++ b/SCIKit/makefile @@ -4,4 +4,4 @@ .PHONY: build-sci
build-sci:
- g++ *.cxx -I../ -shared -fPIC -o libSCI.so
\ No newline at end of file + g++ *.cxx -I../ -shared -fPIC -o libSCI.lib
\ No newline at end of file |
