diff options
author | fanquake <fanquake@gmail.com> | 2020-08-18 09:27:11 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-08-25 14:37:44 +0800 |
commit | cc107a3af17d821f66de9357efe73214a628803b (patch) | |
tree | 7ced3cfed96ae1e4bf06077ece51d0b31fe6c5e3 /depends/patches | |
parent | 865cb23a485d88be603c1d6bf8c32ef7a5edeaa2 (diff) |
build: use patch rather than sed in native_cctools package
Diffstat (limited to 'depends/patches')
-rw-r--r-- | depends/patches/native_cctools/ld64_disable_threading.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/depends/patches/native_cctools/ld64_disable_threading.patch b/depends/patches/native_cctools/ld64_disable_threading.patch new file mode 100644 index 0000000000..d6c58c102f --- /dev/null +++ b/depends/patches/native_cctools/ld64_disable_threading.patch @@ -0,0 +1,26 @@ +commit 584668415039adeed073decee7e04de28248afd3 +Author: fanquake <fanquake@gmail.com> +Date: Tue Aug 18 01:20:24 2020 +0000 + + Disable threading to fix non-determinism + + A bug in the file parser can cause dependencies to be calculated + differently based on which files have already been parsed. This is more + likely to occur on systems with more CPUs. + + Just disable threading for now. There is no noticable slowdown. + + See #9891. + +diff --git a/cctools/ld64/src/ld/InputFiles.h b/cctools/ld64/src/ld/InputFiles.h +index ef9c756..90a70b6 100644 +--- a/cctools/ld64/src/ld/InputFiles.h ++++ b/cctools/ld64/src/ld/InputFiles.h +@@ -25,7 +25,6 @@ + #ifndef __INPUT_FILES_H__ + #define __INPUT_FILES_H__ + +-#define HAVE_PTHREADS 1 + + #include <stdlib.h> + #include <sys/types.h> |