Skip to content
Snippets Groups Projects
Unverified Commit a90eabf6 authored by Christian Marangi's avatar Christian Marangi
Browse files

rules_mk: don't include wrapped bin with external toolchains


Don't add wrapped bin to the TARGET_PATH as it does cause compilation
error.

cmake.mk will use the "command -v" and will use the wrapped bin instead
of the external toolchain bin as they have the same name and command
will select the first result.

Signed-off-by: default avatarChristian Marangi <ansuelsmth@gmail.com>
parent 2555ffb4
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,6 @@ ifndef DUMP
ifneq ($(TOOLCHAIN_LIB_DIRS),)
TARGET_LDFLAGS+= $(patsubst %,-L%,$(TOOLCHAIN_LIB_DIRS))
endif
TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(TARGET_PATH)
endif
endif
endif
......
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