Skip to content

Commit

Permalink
misc fixes: packone, southpole, lilac-loop
Browse files Browse the repository at this point in the history
  • Loading branch information
hexdump0815 committed Oct 25, 2020
1 parent eb2681e commit c2d03cc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 31 deletions.
36 changes: 5 additions & 31 deletions prepare-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,9 @@ fi
if [ -f ../../../vcvrack-packone.$MYARCH.patch ]; then
patch -p1 < ../../../vcvrack-packone.$MYARCH.patch
fi
find * -type f -exec ../../../../simde-ify.sh {} \;
find * -type f -exec ../../../simde-ify.sh {} \;
# some files here get accidently simde-ified :)
git checkout -- docs
cd ..

# go back to a defined starting point to be on the safe side
Expand Down Expand Up @@ -791,9 +793,9 @@ if [ -f ../../source/southpole-vcvrack-source.tar.gz ]; then
cd southpole-vcvrack
# ... otherwise get it from git and create a source archive afterwards
else
git clone https://github.com/gbrandt1/southpole-vcvrack
git clone https://github.com/dogonthehorizon/southpole-vcvrack
cd southpole-vcvrack
git checkout master
git checkout v1
git submodule update --init --recursive
( cd ../../.. ; mkdir -p source ; tar czf source/southpole-vcvrack-source.tar.gz compile/plugins/southpole-vcvrack )
fi
Expand Down Expand Up @@ -864,34 +866,6 @@ cd ..
# go back to a defined starting point to be on the safe side
cd ${WORKDIR}/compile/plugins

# lilac-loop-vcv
echo ""
echo "===> lilac-loop-vcv extra plugin"
echo ""
# if we have a source archive in the source dir use that ...
if [ -f ../../source/lilac-loop-vcv-source.tar.gz ]; then
echo "INFO: using sources from the source archive"
( cd ../.. ; tar xzf source/lilac-loop-vcv-source.tar.gz )
cd lilac-loop-vcv
# ... otherwise get it from git and create a source archive afterwards
else
git clone https://github.com/grough/lilac-loop-vcv
cd lilac-loop-vcv
git checkout main
git submodule update --init --recursive
( cd ../../.. ; mkdir -p source ; tar czf source/lilac-loop-vcv-source.tar.gz compile/plugins/lilac-loop-vcv )
fi
if [ -f ../../../lilac-loop-vcv.patch ]; then
patch -p1 < ../../../lilac-loop-vcv.patch
fi
if [ -f ../../../lilac-loop-vcv.$MYARCH.patch ]; then
patch -p1 < ../../../lilac-loop-vcv.$MYARCH.patch
fi
cd ..

# go back to a defined starting point to be on the safe side
cd ${WORKDIR}/compile/plugins

# Diapason-modules
echo ""
echo "===> Diapason-modules extra plugin"
Expand Down
10 changes: 10 additions & 0 deletions vcvrack-packone.aarch64.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
diff --git a/src/Facets.cpp b/src/Facets.cpp
index 475b941..bbf5d68 100644
--- a/src/Facets.cpp
+++ b/src/Facets.cpp
@@ -1,4 +1,5 @@
#include "plugin.hpp"
+#include "x86/sse3.h"

namespace StoermelderPackOne {
namespace Facets {
10 changes: 10 additions & 0 deletions vcvrack-packone.armv7l.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
diff --git a/src/Facets.cpp b/src/Facets.cpp
index 475b941..bbf5d68 100644
--- a/src/Facets.cpp
+++ b/src/Facets.cpp
@@ -1,4 +1,5 @@
#include "plugin.hpp"
+#include "x86/sse3.h"

namespace StoermelderPackOne {
namespace Facets {

0 comments on commit c2d03cc

Please sign in to comment.