diff options
author | juj <jujjyl@gmail.com> | 2013-12-25 08:39:55 -0800 |
---|---|---|
committer | juj <jujjyl@gmail.com> | 2013-12-25 08:39:55 -0800 |
commit | 0caa98e6ccae219815efafe1f7692ac0dce04971 (patch) | |
tree | ea88cea2e586c698008c132227c7cfc14d65d7b9 /tools | |
parent | 8178ecd4a7301f2971254707e8f379f9ed91cc3e (diff) | |
parent | c0fcd18329fb0cf477a6beac8629e75420d05de6 (diff) |
Merge pull request #1943 from volo-zyko/incoming
Fixed small problems which exhibit themself when building projects with ...
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 5a6a5360..b425c655 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -1094,7 +1094,7 @@ class Building: # 8k is a bit of an arbitrary limit, but a reasonable one # for max command line size before we use a respose file response_file = None - if WINDOWS and len(' '.join(link_cmd)) > 8192: + if len(' '.join(link_cmd)) > 8192: logging.debug('using response file for llvm-link') [response_fd, response_file] = mkstemp(suffix='.response', dir=TEMP_DIR) |