Browse Source

Update Core.json and build scripts.

v1
Andrew Belt 5 years ago
parent
commit
17ef6e6d92
3 changed files with 3 additions and 2 deletions
  1. +1
    -1
      manifests/Core.json
  2. +1
    -1
      scripts/build.py
  3. +1
    -0
      scripts/update.py

+ 1
- 1
manifests/Core.json View File

@@ -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",


+ 1
- 1
scripts/build.py View File

@@ -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')


+ 1
- 0
scripts/update.py View File

@@ -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:]


Loading…
Cancel
Save