diff options
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 01fd177929..b75072a25e 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -115,7 +115,7 @@ kernel.map: kernel @echo "MKMAP $@"; sh mkmap.sh $(KERNEL): $(OBJS) - @echo "LD $@"; $(LD) $(LDFLAGS) -o $@ $(OBJS) -lgcc + @echo "LD $@"; $(LD) $(LDFLAGS) -o $@ $(OBJS) -lgcc -lstdc++ .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< |