diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 77d18a5d0c..cfac91bae5 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1934,7 +1934,8 @@ class Parser(multiprocessing.Process): | |||
1934 | except IndexError: | 1934 | except IndexError: |
1935 | break | 1935 | break |
1936 | result = self.parse(*job) | 1936 | result = self.parse(*job) |
1937 | 1937 | # Clear the siggen cache after parsing to control memory usage, its huge | |
1938 | bb.parse.siggen.postparsing_clean_cache() | ||
1938 | try: | 1939 | try: |
1939 | self.results.put(result, timeout=0.25) | 1940 | self.results.put(result, timeout=0.25) |
1940 | except queue.Full: | 1941 | except queue.Full: |