Skip to content

Commit

Permalink
Merge pull request #284 from 4ms/fix-vcv-ci-use-4ms-ghcr-fork
Browse files Browse the repository at this point in the history
Using 4ms fork of rack-plugin-toolchain (uses gcc 13.2)
  • Loading branch information
danngreen authored Jun 29, 2024
2 parents 766d904 + c1ab2de commit 677147c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_vcv_plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
name: lin-x64
runs-on: ubuntu-latest
container:
image: ghcr.io/qno/rack-plugin-toolchain-win-linux
image: ghcr.io/4ms/rack-plugin-toolchain-win-linux
options: --user root
strategy:
fail-fast: false
Expand All @@ -75,7 +75,7 @@ jobs:
name: win-x64
runs-on: ubuntu-latest
container:
image: ghcr.io/qno/rack-plugin-toolchain-win-linux
image: ghcr.io/4ms/rack-plugin-toolchain-win-linux
options: --user root
strategy:
fail-fast: false
Expand Down
11 changes: 10 additions & 1 deletion vcv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ FLAGS += $(INCLUDES)
FLAGS += -g2

CFLAGS +=
CXXFLAGS += -DVCVRACK
CXXFLAGS += -DVCVRACK -freport-bug

# Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path.
# Static libraries are fine, but they should be added to this plugin's build system.
Expand All @@ -106,6 +106,15 @@ LDFLAGS +=
DISTRIBUTABLES += res
DISTRIBUTABLES += $(wildcard LICENSE*)

all: debug

debug:
$(CXX) --version

clean:
$(CXX) --version


# Include the Rack plugin Makefile framework
include $(RACK_DIR)/plugin.mk

Expand Down

0 comments on commit 677147c

Please sign in to comment.