diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-17 19:16:10 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-17 19:16:10 +0100 |
commit | 43c7686b4d6afc56d2909c1630ea2eee626490bb (patch) | |
tree | 8f7878c63c45c757cf8b6f7ac7fac0783da6bf31 /toolchain/uclibc-ng/Makefile | |
parent | 41f5fc3d3eb0b17faeed0de4ddc736c94054db80 (diff) |
allow to build static gdb/strace with static/shared mixed toolchain
Diffstat (limited to 'toolchain/uclibc-ng/Makefile')
-rw-r--r-- | toolchain/uclibc-ng/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/uclibc-ng/Makefile b/toolchain/uclibc-ng/Makefile index 3d07abac0..a31f4e3af 100644 --- a/toolchain/uclibc-ng/Makefile +++ b/toolchain/uclibc-ng/Makefile @@ -16,6 +16,11 @@ TARGET_LDFLAGS:=$(filter-out -fstack-protector-all,$(TARGET_LDFLAGS)) # don't use fast-math for C library TARGET_CFLAGS:= $(filter-out -ffast-math,$(TARGET_CFLAGS)) +ifeq ($(ADK_TARGET_USE_STATIC_AND_SHARED_LIBS),y) +TARGET_CFLAGS:= $(filter-out -static,$(TARGET_CFLAGS)) +TARGET_LDFLAGS:=$(filter-out -static,$(TARGET_LDFLAGS)) +endif + ifeq ($(ADK_BUILD_COMPILER_GCC),y) ifeq ($(ADK_TARGET_HARD_FLOAT),y) ifeq ($(ADK_TARGET_HARD_FLOAT_SP),y) |