forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
, bitcoin#28580, bitcoin#28786, bitcoin#29078, bitcoin#27897, bitcoin#29651, bitcoin#29695, bitcoin#29673, bitcoin#29828, bitcoin#29846, bitcoin#30231, bitcoin#30438, partial bitcoin#30511 (guix backports: part 5)" This reverts commit be97bfe, reversing changes made to f155ecf.
- Loading branch information
Showing
7 changed files
with
341 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
commit f6df41524e703dc471e283e566a48e05a735b7f2 | ||
Author: Anders <[email protected]> | ||
Date: Sat Jun 27 23:18:45 2020 +0000 | ||
|
||
Don't let GCC 10 generate memmove calls (bug #1248) | ||
|
||
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7189 212acab6-be3b-0410-9dea-997c60f758d6 | ||
|
||
diff --git a/SCons/Config/gnu b/SCons/Config/gnu | ||
index bfcb362d..21fa446b 100644 | ||
--- a/SCons/Config/gnu | ||
+++ b/SCons/Config/gnu | ||
@@ -103,6 +103,10 @@ stub_env.Append(LINKFLAGS = ['$NODEFLIBS_FLAG']) # no standard libraries | ||
stub_env.Append(LINKFLAGS = ['$ALIGN_FLAG']) # 512 bytes align | ||
stub_env.Append(LINKFLAGS = ['$MAP_FLAG']) # generate map file | ||
|
||
+conf = FlagsConfigure(stub_env) | ||
+conf.CheckCompileFlag('-fno-tree-loop-distribute-patterns') # GCC 10: Don't generate msvcrt!memmove calls (bug #1248) | ||
+conf.Finish() | ||
+ | ||
stub_uenv = stub_env.Clone() | ||
stub_uenv.Append(CPPDEFINES = ['_UNICODE', 'UNICODE']) | ||
|
Oops, something went wrong.