Skip to content
Snippets Groups Projects
Unverified Commit 37a92c4c authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

newlib.mk: Windows/MSYS Bash support: use realpath instead of abspath

Some versions of Mingw32 abspath implementation has trouble working with
windows formatted path.

    $(abspath "C:/A/B") returns "/C/CUR/DIR/C:/A/B" instead of "/C/A/B"

relpath does not have this problem, it does additional symlink resolution but is
not a problem.
Note: on windows it does not remove the trailing `/`.

https://github.com/zephyrproject-rtos/zephyr/issues/2061#issuecomment-331635063

Patched in

https://github.com/zephyrproject-rtos/zephyr/commit/941059c69f9488613775a1a8802a099447cdea4c
parent 3a4538ee
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,13 @@ endif ...@@ -19,6 +19,13 @@ endif
export LINKFLAGS += -lc export LINKFLAGS += -lc
# Note on `realpath` vs `abspath`
#
# `realpath` is used instead of `abspath` to support Mingw32
# It fixes issues when using windows formatted paths like in the gcc output
# It does leave the trailing `/` on windows though
# Search for Newlib include directories # Search for Newlib include directories
# Try to search for newlib in the standard search path of the compiler for includes # Try to search for newlib in the standard search path of the compiler for includes
...@@ -62,7 +69,7 @@ endif ...@@ -62,7 +69,7 @@ endif
# If nothing was found we will try to fall back to searching for a cross-gcc in # If nothing was found we will try to fall back to searching for a cross-gcc in
# the current PATH and use a relative path for the includes # the current PATH and use a relative path for the includes
ifeq (,$(NEWLIB_INCLUDE_DIR)) ifeq (,$(NEWLIB_INCLUDE_DIR))
NEWLIB_INCLUDE_DIR := $(abspath $(wildcard $(dir $(shell command -v $(PREFIX)gcc 2>/dev/null))/../$(TARGET_ARCH)/include)) NEWLIB_INCLUDE_DIR := $(realpath $(wildcard $(dir $(shell command -v $(PREFIX)gcc 2>/dev/null))/../$(TARGET_ARCH)/include))
endif endif
ifeq ($(TOOLCHAIN),llvm) ifeq ($(TOOLCHAIN),llvm)
...@@ -72,7 +79,7 @@ ifeq ($(TOOLCHAIN),llvm) ...@@ -72,7 +79,7 @@ ifeq ($(TOOLCHAIN),llvm)
# We also add -nostdinc to avoid including the host system headers by mistake # We also add -nostdinc to avoid including the host system headers by mistake
# in case some header is missing from the cross tool chain # in case some header is missing from the cross tool chain
NEWLIB_INCLUDES := -isystem $(NEWLIB_INCLUDE_DIR) -nostdinc NEWLIB_INCLUDES := -isystem $(NEWLIB_INCLUDE_DIR) -nostdinc
NEWLIB_INCLUDES += $(addprefix -isystem ,$(abspath $(wildcard $(dir $(NEWLIB_INCLUDE_DIR))/usr/include))) NEWLIB_INCLUDES += $(addprefix -isystem ,$(realpath $(wildcard $(dir $(NEWLIB_INCLUDE_DIR))/usr/include)))
# Newlib includes should go before GCC includes. This is especially important # Newlib includes should go before GCC includes. This is especially important
# when using Clang, because Clang will yield compilation errors on some GCC- # when using Clang, because Clang will yield compilation errors on some GCC-
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment