Discussion:
branch master updated (1345fee -> cf12bc2)
EmbToolkit GIT
2014-10-19 10:14:28 UTC
Permalink
embtoolkit branch master changed:
from 1345fee Host tools: move gettext under dir dedicated for host tools
new cf12bc2 Toolchain: eglibc/glibc: add /opt/local among locations to look for headers and libs on bsd systems

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
core/mk/eglibc.mk | 4 ++--
core/mk/glibc.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
--
Embedded systems Toolkit.
Abdoulaye Walsimou Gaye
2014-10-19 10:14:28 UTC
Permalink
The following commit changed embtoolkit branch master

commit cf12bc2f8caff4a6dfd6ef347bba2f789d083870
Author: Abdoulaye Walsimou Gaye <awg-LnBD0/***@public.gmane.org>
Date: Sun Oct 19 12:19:13 2014 +0200

Toolchain: eglibc/glibc: add /opt/local among locations to look for headers and libs on bsd systems

Signed-off-by: Abdoulaye Walsimou Gaye <awg-LnBD0/***@public.gmane.org>
---
core/mk/eglibc.mk | 4 ++--
core/mk/glibc.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/mk/eglibc.mk b/core/mk/eglibc.mk
index 6087e76..5a62e95 100644
--- a/core/mk/eglibc.mk
+++ b/core/mk/eglibc.mk
@@ -49,8 +49,8 @@ embtk_eglibc_optgroups_f := $(EMBTK_ROOT)/core/mk/eglibc/eglibc-$(EGLIBC_VERSION
eglibc_optgroups_f := $(EGLIBC_BUILD_DIR)/option-groups.config

ifeq ($(embtk_buildhost_os_type),bsd)
-embtk_eglibc_buildcflags := -I/usr/local/include -Dstat64=stat
-embtk_eglibc_buildldflags := -L/usr/local/lib -lintl
+embtk_eglibc_buildcflags := -I/opt/local/include -I/usr/local/include -Dstat64=stat
+embtk_eglibc_buildldflags := -L/opt/local/lib -L/usr/local/lib -lintl
endif

#
diff --git a/core/mk/glibc.mk b/core/mk/glibc.mk
index d721070..d7940cc 100644
--- a/core/mk/glibc.mk
+++ b/core/mk/glibc.mk
@@ -43,8 +43,8 @@ embtk_glibc_cflags := $(subst -O0,-O1,$(__embtk_glibc_cflags))
embtk_glibc_floattype := $(if $(CONFIG_EMBTK_SOFTFLOAT),--with-fp=no,--with-fp=yes)

ifeq ($(embtk_buildhost_os_type),bsd)
-embtk_glibc_buildcflags := -I/usr/local/include -Dstat64=stat
-embtk_glibc_buildldflags := -L/usr/local/lib -lintl
+embtk_glibc_buildcflags := -I/opt/local/include -I/usr/local/include -Dstat64=stat
+embtk_glibc_buildldflags := -L/opt/local/lib -L/usr/local/lib -lintl
endif

#
--
Embedded systems Toolkit.
Loading...