We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38dc41f commit c31f480Copy full SHA for c31f480
mars/libraries/build_android.py
@@ -244,7 +244,8 @@ def main():
244
SO_SYMBOL_CACHE_DIR = sdk_path + "/so_cache/symbol/"
245
SO_DES_DIR = sdk_path + "/libs/"
246
SO_SYMBOL_DES_IR = sdk_path + "/obj/local/"
247
-
+ if os.path.exists(SO_CACHE_DIR):
248
+ shutil.rmtree(SO_CACHE_DIR)
249
250
for i in range(0, len(archs)):
251
print "build %s" %(archs[i])
@@ -283,7 +284,6 @@ def main():
283
284
if "2" == num or "3" == num:
285
return
286
287
if os.path.exists(SO_DES_DIR):
288
shutil.rmtree(SO_DES_DIR)
289
if os.path.exists(SO_SYMBOL_DES_IR):
0 commit comments