diff options
Diffstat (limited to 'lib/libfdt/Makefile')
-rw-r--r-- | lib/libfdt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libfdt/Makefile b/lib/libfdt/Makefile index b9c7223..a3de4b6 100644 --- a/lib/libfdt/Makefile +++ b/lib/libfdt/Makefile @@ -13,7 +13,7 @@ SRC=fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c fdt_empty_tree.c \ ${BUILDDIR}/libfdt.a: ${SRC} mkdir -p ${BUILDDIR} - cd ${BUILDDIR} && ${CROSS_COMPILE}gcc -c ${CFLAGS} -nostdlib ${SRC:%=../../%} + cd ${BUILDDIR} && ${CROSS_COMPILE}gcc -c ${CFLAGS} -L ../libc/${BUILDDIR} -l:libc.a -nostdlib -nostdinc -I../../include/ ${SRC:%=../../%} cd ${BUILDDIR} && ${CROSS_COMPILE}ar -rcs ${@:T} ${SRC:T:%.c=%.o} |