We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66b22fa commit b2404e8Copy full SHA for b2404e8
builder/frameworks/espidf.py
@@ -1534,6 +1534,19 @@ def get_python_exe():
1534
except:
1535
print("Warning! Couldn't find the main linker script in the CMake code model.")
1536
1537
+# remove circle linker commands
1538
+try:
1539
+ link_args_index = link_args["LINKFLAGS"].index("-Wl,--start-group")
1540
+ link_args["LINKFLAGS"].pop(link_args_index)
1541
+except:
1542
+ pass
1543
+
1544
1545
+ link_args_index = link_args["LINKFLAGS"].index("-Wl,--end-group")
1546
1547
1548
1549
1550
#
1551
# Process project sources
1552
0 commit comments