Browse Source

Add workaround for undefined reference to weak function under mingw (#26167)

Joel Challis 3 months ago
parent
commit
e2c7d621a1
1 changed files with 4 additions and 0 deletions
  1. 4 0
      platforms/test/platform.mk

+ 4 - 0
platforms/test/platform.mk

@@ -11,6 +11,10 @@ HEX =
 EEP =
 BIN =
 
+# workaround for undefined reference to weak function under mingw
+ifneq ($(findstring mingw, ${SYSTEM_TYPE}),)
+LTO_ENABLE := yes
+endif
 
 COMPILEFLAGS += -funsigned-char
 ifeq ($(findstring clang, ${GCC_VERSION}),)