From b84054f3567e4959633ce23b152e56d36af8e2fd Mon Sep 17 00:00:00 2001 From: David Buzinski Date: Mon, 19 Feb 2024 17:16:16 -0500 Subject: [PATCH] simplify build --- .github/workflows/ci.yml | 5 ----- buildfile.m | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d999e5..f3c6888 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,11 +9,6 @@ jobs: uses: actions/checkout@v4 with: submodules: recursive - - name: Install compiler dependencies - run: | - sudo apt-get update - sudo apt-get install -y gcc-11 gcc-11-base gcc-11-doc g++-11 - sudo apt-get install -y libstdc++-11-dev libstdc++-11-doc - name: Set up MATLAB uses: matlab-actions/setup-matlab@v2 - name: Run build diff --git a/buildfile.m b/buildfile.m index 6ec3a95..6c92e3e 100644 --- a/buildfile.m +++ b/buildfile.m @@ -12,7 +12,7 @@ plan("mex") = MexTask([plan("uWebSockets").Outputs.paths, "mex/internal/*.cpp"], ... "toolbox/+blink/+internal", ... Filename="serve", ... - Options=["CXXFLAGS=''$CXXFLAGS -std=c++20''", "-Iinclude/uWebSockets/src", "-Iinclude/uWebSockets/uSockets/src", "-v", "-lz"], ... + Options=["CXXFLAGS=''$CXXFLAGS -std=c++20''", "-Iinclude/uWebSockets/src", "-Iinclude/uWebSockets/uSockets/src", "-lz"], ... Dependencies="uWebSockets"); plan("test") = TestTask("tests"); plan("test").Dependencies = ["mex" "forge"];