summaryrefslogtreecommitdiffhomepage
path: root/Private/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-06 07:55:10 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-06 07:56:54 +0200
commite723038ba97bb84726f16ce5a6258d78262d90d7 (patch)
treece9d0d7d0ef1d886bdc025fef5a50a38eded8132 /Private/makefile
parentf95d8bf159d10b5a9521dcaa0bc37aa0e9dfc02b (diff)
MHR-23: See below.
This commit adds 1 function a macro and 2 functions. - __throw_domain_error, which just throws an interrupt. - allocate, which allocates a class. - release, which releases a class. - __STD_CXX__ to tell if we use standard C++. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/makefile')
-rw-r--r--Private/makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Private/makefile b/Private/makefile
index 6a73c10d..d665c5fe 100644
--- a/Private/makefile
+++ b/Private/makefile
@@ -5,8 +5,10 @@
CC = x86_64-w64-mingw32-gcc
LD = x86_64-w64-mingw32-ld
-CCFLAGS = -c -ffreestanding -fPIC -D__NEWOS_AMD64__ -mno-red-zone -fno-rtti -fno-exceptions \
- -std=c++20 -D__FSKIT_NEWFS__ -D__KERNEL__ -D__HAVE_MAHROUSS_APIS__ -D__MAHROUSS__ -I../ -I./
+CCFLAGS = -c -fPIC -D__NEWOS_AMD64__ -mno-red-zone -fno-rtti -fno-exceptions \
+ -std=c++20 -D__FSKIT_NEWFS__ -D__KERNEL__ -D__HAVE_MAHROUSS_APIS__ -D__MAHROUSS__ -I../ -I./ \
+ -DBLEND2D_NO_STDCXX -DBLEND2D_NO_TLS -DBLEND2D_EMBED
+
ASM = nasm
ifneq ($(ATA_PIO_SUPPORT), )