Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/build/linux/debug.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
make debug
#make debug
1 change: 1 addition & 0 deletions .github/build/linux/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
sudo apt update && sudo apt install gcc-multilib g++-multilib -y
git clone https://github.com/thecybermind/qmm2.git ../qmm2
git clone https://github.com/thecybermind/qmm_sdks.git ../qmm_sdks
git clone https://github.com/thecybermind/sof2gt_qmm.git ../sof2gt_qmm
7 changes: 3 additions & 4 deletions .github/build/linux/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ rm -f *
cp ../README.md ./
cp ../LICENSE ./

for f in SOF2MP; do
cp ../bin/release-$f/x86/stub_sof2gt_$f.so ./
cp ../bin/release-$f/x86_64/stub_sof2gt_x86_64_$f.so ./
done
#for f in SOF2MP; do
# cp ../bin/release-$f/x86/stub_sof2gt_$f.so ./
#done

cd ..
2 changes: 1 addition & 1 deletion .github/build/linux/release.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
make release
#make release
1 change: 0 additions & 1 deletion .github/build/windows/debug.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
for %%x in (SOF2MP) do (
msbuild .\msvc\stub_sof2gt.vcxproj /p:Configuration=Debug-%%x /p:Platform=x86
msbuild .\msvc\stub_sof2gt.vcxproj /p:Configuration=Debug-%%x /p:Platform=x64
)
1 change: 1 addition & 0 deletions .github/build/windows/init.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
git clone https://github.com/thecybermind/qmm2.git ../qmm2
git clone https://github.com/thecybermind/qmm_sdks.git ../qmm_sdks
git clone https://github.com/thecybermind/sof2gt_qmm.git ../sof2gt_qmm
1 change: 0 additions & 1 deletion .github/build/windows/package.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ rem copy ..\LICENSE .\

for %%x in (SOF2MP) do (
copy ..\bin\Release-%%x\x86\stub_sof2gt_%%x.dll .\
copy ..\bin\Release-%%x\x64\stub_sof2gt_x86_64_%%x.dll .\
)
popd
1 change: 0 additions & 1 deletion .github/build/windows/release.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
for %%x in (SOF2MP) do (
msbuild .\msvc\stub_sof2gt.vcxproj /p:Configuration=Release-%%x /p:Platform=x86
msbuild .\msvc\stub_sof2gt.vcxproj /p:Configuration=Release-%%x /p:Platform=x64
)
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ SRC_FILES := $(wildcard $(SRC_DIR)/*.cpp)

OBJ_FILES := $(SRC_FILES:$(SRC_DIR)/%.cpp=%.o)

CPPFLAGS := -MMD -MP -I ./include -isystem ../qmm_sdks -isystem ../qmm2/include
CPPFLAGS := -MMD -MP -I ./include -isystem ../qmm_sdks -isystem ../qmm2/include -isystem ../sof2gt_qmm/include
CFLAGS := -Wall -pipe -fPIC
LDFLAGS := -shared -fPIC
LDLIBS :=
Expand Down