dc67c7f4dc
The external toolchain and internal toolchain cases both need to use the --sysroot option, and they have almost identical LDFLAGS/CFLAGS/CXXFLAGS definition, so we can factorize these definitions. Moreover, the --isysroot option is implied by --sysroot so there's no need to specify both. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
600 B
Makefile
21 lines
600 B
Makefile
ifeq ($(BR2_PTHREADS_NONE),y)
|
|
THREADS:=--disable-threads
|
|
else
|
|
THREADS:=--enable-threads
|
|
endif
|
|
|
|
ifeq ($(BR2_ENABLE_MULTILIB),y)
|
|
MULTILIB:=--enable-multilib
|
|
else
|
|
MULTILIB:=--disable-multilib
|
|
endif
|
|
|
|
BR2_SYSROOT_STAGING_DESTDIR=DESTDIR=$(STAGING_DIR)/
|
|
BR2_SYSROOT_TARGET_DESTDIR=DESTDIR=$(TARGET_DIR)/
|
|
BR2_CONFIGURE_DEVEL_SYSROOT=--with-sysroot=$(TOOLCHAIN_DIR)/uClibc_dev/
|
|
BR2_CONFIGURE_STAGING_SYSROOT=--with-sysroot=$(STAGING_DIR)
|
|
BR2_CONFIGURE_BUILD_TOOLS=--with-build-time-tools=$(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/bin
|
|
|
|
# gcc has a bunch of needed stuff....
|
|
include toolchain/gcc/Makefile.in
|