From 9103f1daea58e5ed805f330c34e64f23f62db0fc Mon Sep 17 00:00:00 2001 From: toto <email@example.com> Date: Tue, 14 Apr 2020 11:14:28 +0200 Subject: [PATCH] -Wno-narrowing --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a33c400..e800a1c 100644 --- a/Makefile +++ b/Makefile @@ -8,12 +8,13 @@ LIEUR_OPTION=LIEUR_$(OS) ##Pour Mac CPP_Darwin=i386-elf-g++-4.3.2 LD_Darwin=i386-elf-ld +COMPOP_Darwin=-Wno-narrowing #------------------- ##Pour Linux CPP_Linux=g++ LD_Linux=ld -COMPOP_Linux=-fno-stack-protector -m32 +COMPOP_Linux=-fno-stack-protector -m32 -Wno-narrowing LIEUR_Linux=-m elf_i386 #------------------- @@ -45,7 +46,7 @@ $(KERNEL_OBJ): multiboot.o main.o # A FAIRE DANS LA PREMIERE QUESTION. ##################################### -# Nous avons besoin de main.o, Ecran.o, et multiboot.o pour g�n�rer sextant.elf +# Nous avons besoin de main.o, Ecran.o, et multiboot.o pour g�n�rer sextant.elf # completez multiboot.o: hal/multiboot.S -- GitLab