blob: c0bd561bb90d4f1384f06198c354082afb8a56b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include $(TOPDIR)Rules.mak
LDSO_VERSION=1.9.11
DEVEL=true
# Do NOT use -fomit-frame-pointer -- It won't work!
CFLAGS += -DVERSION=\"$(LDSO_VERSION)\"
CC = $(TOPDIR)extra/gcc-uClibc/$(NATIVE_ARCH)-uclibc-gcc
ifeq ($(DEVEL),true)
CFLAGS += -DUCLIBC_INSTALL_DIR=\"$(INSTALL_DIR)\"
endif
|