diff --git a/ChangeLog b/ChangeLog index 1c6ab694d..7781d42da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-12-13 Vladimir Serbinenko + + Prevent generation of .note.gnu.build-id which drastically increases + memory requirements of example kernel. + + * docs/Makefile.am (kernel_LDFLAGS): Add '-Wl,--build-id=none'. + 2009-12-13 Vladimir Serbinenko * BUGS: New file. diff --git a/docs/Makefile.am b/docs/Makefile.am index ab09efe5a..cb21b5b61 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -11,7 +11,7 @@ noinst_PROGRAMS = kernel kernel_SOURCES = $(EXAMPLES) kernel_CFLAGS = -fno-builtin -nostdinc -O -g -Wall \ -imacros $(top_builddir)/config.h -kernel_LDFLAGS = -nostdlib -Wl,-N -Wl,-Ttext -Wl,100000 +kernel_LDFLAGS = -nostdlib -Wl,-N -Wl,-Ttext -Wl,100000 -Wl,--build-id=none boot.o: multiboot.h endif