summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-10-30 15:01:17 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-10-30 15:01:17 +0200
commitf012a3be23bc9e3e9f940ffca7ad61791a12a858 (patch)
treea70d541a116c6fc63827844ef840d8340e82cdff
parentd2da14d0ff0cb22d6d275938ee26855d6ce44987 (diff)
yet another readme update1.1release-1.1
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index ac7d2b2..70557c6 100644
--- a/README.md
+++ b/README.md
@@ -77,9 +77,10 @@ source [path-to-this-repo]/w64-mingw32-sysroot/x86_64/activate.sh
This project uses a very very rudimentary CRT for C and C++ projects.
Please keep in mind that depending on what you want to do the CRT may lack features you are familiar with.
-Usually copy&pasting them from various online sources should be sufficient.
+Usually this will manifest in linker errors such as undefined references.
+Most of the time copy&pasting missing libc/libgcc functions from various online sources should be sufficient.
-Remember: The CRT and CRT++ **sets a driver unload function** meaning that code .e.g.:
+Remember: The CRT/CRT++ **set a driver unload function** meaning that code .e.g.:
```C
NTSTATUS MyDriverEntry(_In_ struct _DRIVER_OBJECT * DriverObject, _In_ PUNICODE_STRING RegistryPath)
@@ -137,7 +138,7 @@ $(USERSPACE_TARGET): $(USERSPACE_OBJECTS)
## Thanks goes to:
- [Zeranoe](https://github.com/Zeranoe/mingw-w64-build) for the Mingw64 build script
-- [sidyhe](https://github.com/sidyhe/dxx) for some copy paste ready CRT code ;)
+- [sidyhe](https://github.com/sidyhe/dxx) for some copy paste ready CRT code
- [liupengs](https://github.com/liupengs/Mini-CRT) helped me to fix the ctor/dtor issue
and last but not least: