diff options
author | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-27 09:39:05 -0400 |
---|---|---|
committer | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-28 03:23:33 -0400 |
commit | a4a222d62dcffaf93e3dd439c3f61836a4cd831e (patch) | |
tree | 72f06c4b4a0aaa17aa9108bc12f20d057b671151 /methods.py | |
parent | a26b36bec2e99a128b7a61ff9fa1e2e46148f547 (diff) | |
download | redot-engine-a4a222d62dcffaf93e3dd439c3f61836a4cd831e.tar.gz |
use the same cache for all branches for appveyor
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/methods.py b/methods.py index 2be73f02d2..0bf5c01462 100644 --- a/methods.py +++ b/methods.py @@ -1496,6 +1496,7 @@ def split_lib(self, libname): if base != cur_base and len(list) > max_src: if num > 0: lib = env.Library(libname + str(num), list) + env.NoCache(lib) lib_list.append(lib) list = [] num = num + 1 @@ -1503,6 +1504,7 @@ def split_lib(self, libname): list.append(f) lib = env.Library(libname + str(num), list) + env.NoCache(lib) lib_list.append(lib) if len(lib_list) > 0: @@ -1510,11 +1512,14 @@ def split_lib(self, libname): if os.name == 'posix' and sys.platform == 'msys': env.Replace(ARFLAGS=['rcsT']) lib = env.Library(libname + "_collated", lib_list) + env.NoCache(lib) lib_list = [lib] lib_base = [] env.add_source_files(lib_base, "*.cpp") - lib_list.insert(0, env.Library(libname, lib_base)) + lib = env.Library(libname, lib_base) + env.NoCache(lib) + lib_list.insert(0, lib) env.Prepend(LIBS=lib_list) |