From 17ef6e6d92b893d56ae8a838c0928dfa948b8e3b Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 4 Nov 2019 19:39:45 -0500 Subject: [PATCH] Update Core.json and build scripts. --- manifests/Core.json | 2 +- scripts/build.py | 2 +- scripts/update.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/manifests/Core.json b/manifests/Core.json index f9dfb91d..ef21b7c8 100644 --- a/manifests/Core.json +++ b/manifests/Core.json @@ -1,7 +1,7 @@ { "slug": "Core", "name": "Core", - "version": "1.1.2", + "version": "1.1.6", "license": "GPL-3.0-only", "author": "VCV", "brand": "VCV", diff --git a/scripts/build.py b/scripts/build.py index e8d347b0..e66c03a2 100644 --- a/scripts/build.py +++ b/scripts/build.py @@ -24,7 +24,7 @@ def delete_stage(): def build_mac(plugin_dir): print(f"Building {plugin_dir} for mac") - env = f'CC=x86_64-apple-darwin15-clang CXX=x86_64-apple-darwin15-clang++-libc++ STRIP=x86_64-apple-darwin15-strip RACK_DIR={RACK_SDK}' + env = f'CC=x86_64-apple-darwin17-clang CXX=x86_64-apple-darwin17-clang++-libc++ STRIP=x86_64-apple-darwin17-strip RACK_DIR={RACK_SDK}' make = f'{env} make -j$(nproc) -C {plugin_dir}' system(f'{make} clean') system(f'{make} cleandep') diff --git a/scripts/update.py b/scripts/update.py index d2066647..fb704ee7 100644 --- a/scripts/update.py +++ b/scripts/update.py @@ -16,6 +16,7 @@ RACK_USER_PLUGIN_DIR = os.path.join(RACK_USER_DIR, "plugins-v1") # Update git before continuing build.system("git pull") +# build.system("git submodule sync") build.system("git submodule update --init --recursive") plugin_filenames = sys.argv[1:]