aboutsummaryrefslogtreecommitdiff
path: root/Makefile.deps
Commit message (Collapse)AuthorAge
* Added basic CXX string obfuscation via constexpr.Toni Uhlig2023-12-23
| | | | | | | * obfuscate functions names retrieved via MmGetSystemRoutineAddress * add two new static libs: libcnative (C-only) and libcxxnative (CXX-only) Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Partial SEH support.Toni Uhlig2023-11-15
| | | | | | | * Removed linker script; .edata *and* .pdata required by MingW for SEH. * Removed buggy `-fdata-sections` and `-ffunction-sections`. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added custom linker script.Toni Uhlig2023-10-01
| | | | | | * discard .xdata section (unwind data for SEH will be done in another way) Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fix CirlceCI build.Toni Uhlig2023-09-15
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added `nanoprintf.h` header only library to implement `::to_string` functions.Toni Uhlig2023-09-15
| | | | | | * `eastl::to_string` does not work for now Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fix CI.Toni Uhlig2023-09-12
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added ThreadArgs, Event, WorkItem.Toni Uhlig2023-09-12
| | | | | | | * added/modified WorkQueue example * enable additional EASTL features in user space Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fixed build if "use your own toolchain" enabled.Toni Uhlig2023-07-26
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Improved local dep building.Toni Uhlig2023-07-26
| | | | | | | * generate static libs with ar * libcrt, libcxxrt, libusercrt Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added wrapper generator for functions that require an import library.Toni Uhlig2023-07-04
| | | | | | | * generate wrapper functions that can be retrieved via `MmGetSystemRoutineAddress` * for now, only ZwTraceControl and ZwTraceEvent from ntdll are used Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Build DPP with a toolchain tarball generated by mingw-w64-build-ng.lns2022-09-20
| | | | | | * integrate into CircleCI Signed-off-by: lns <matzeton@googlemail.com>
* Changed Mingw-w64 sysroot to mingw-w64-sysroot.Toni Uhlig2022-09-02
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Support USER_LIBS for project Makefiles.Toni Uhlig2022-09-02
| | | | | | * source'able activate script uses runtime PATH variable instead of a hardcoded one Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* EASTL build: tell CMake about our ressource compiler windresToni Uhlig2022-08-29
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* CI: Github ActionsToni2022-05-07
| | | | Signed-off-by: lns <matzeton@googlemail.com>
* Distinguish between local and dependency targets to prevent confusion.Toni Uhlig2022-03-09
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* submodule update: lnslbrty/mingw-w64-build-ngToni Uhlig2022-01-04
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fix CircleCI build.Toni Uhlig2021-10-30
| | | | | | | * README update * make help Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Support HOSTCC builds for EASTL.Toni Uhlig2021-10-29
| | | | | | * set parallel jobs for mingw-w64-build via Makefile.deps Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added source'able toolchain script.Toni Uhlig2021-09-19
| | | | | | * The script adds x86_64-w64-mingw32/bin and x86_64-w64-mingw32/x86_64-w64-mingw32/bin to PATH Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fixed ctor/dtor issue allowing use of static qualifiers for non primitives.Toni Uhlig2021-07-28
| | | | | | | | * split CRT in a C and C++ part * use "fake" entry point to init CRT and set a DriverUnload routine for de-init * added -Wl,--exclude-all-symbols to DRIVER_LDFLAGS Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Unified CFLAGS for EASTL and all other builds.Toni Uhlig2021-04-24
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added Makefile macro to check if some exec's are available e.g. $(CC),$(CXX),..Toni Uhlig2021-04-24
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Re-worked all the Makefile's as they were not sufficient for external projects.Toni Uhlig2021-04-24
* simplified DriverThread::SpinLock Signed-off-by: Toni Uhlig <matzeton@googlemail.com>