summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--changelogs/changelog_2_0_0.md1
-rw-r--r--config/nim.cfg7
2 files changed, 0 insertions, 8 deletions
diff --git a/changelogs/changelog_2_0_0.md b/changelogs/changelog_2_0_0.md
index 2de86fb69..dcdaa797d 100644
--- a/changelogs/changelog_2_0_0.md
+++ b/changelogs/changelog_2_0_0.md
@@ -472,7 +472,6 @@
   static libraries.
 
 - When compiling for Release the flag `-fno-math-errno` is used for GCC.
-- When compiling for Release the flag `--build-id=none` is used for GCC Linker.
 - Removed deprecated `LineTooLong` hint.
 
 
diff --git a/config/nim.cfg b/config/nim.cfg
index 6af5b0fd7..a9dba347a 100644
--- a/config/nim.cfg
+++ b/config/nim.cfg
@@ -364,10 +364,3 @@ tcc.options.always = "-w"
   clang.cpp.options.linker %= "${clang.cpp.options.linker} -s"
 @end
 
-# Linker: Skip "Build-ID metadata strings" in binaries when build for release.
-@if release or danger:
-  @if not macosx:
-    gcc.options.linker %= "${gcc.options.linker} -Wl,--build-id=none"
-    gcc.cpp.options.linker %= "${gcc.cpp.options.linker} -Wl,--build-id=none"
-  @end
-@end