Commit 7d21d3e7 authored by David Reid's avatar David Reid

Stop version controlling test build scripts.

parent 1246c4a8
cc ma_test_0.c -o ./bin/ma_test_0 -Wall -lpthread -lm
c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -lpthread -lm
cc ma_profiling.c -o ./bin/ma_profiling -Wall -lpthread -lm
c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -lpthread -lm
cc ma_dithering.c -o ./bin/ma_dithering -Wall -lpthread -lm
c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -lpthread -lm
::emcc ./ma_test_0.c -o ./bin/ma_test_0_emscripten.html -s WASM=0 -Wall
emcc ./ma_duplex.c -o ./bin/ma_duplex.html -s WASM=0 -Wall
\ No newline at end of file
#!/bin/bash
cc ma_test_0.c -o ./bin/ma_test_0 -Wall -ldl -lpthread -lm
c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -ldl -lpthread -lm
cc ma_profiling.c -o ./bin/ma_profiling -Wall -ldl -lpthread -lm
c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -ldl -lpthread -lm
cc ma_dithering.c -o ./bin/ma_dithering -Wall -ldl -lpthread -lm
c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -ldl -lpthread -lm
cc ma_duplex.c -o ./bin/ma_duplex -Wall -ldl -lpthread -lm
cc ma_test_0.c -o ./bin/ma_test_0 -Wall -lpthread -lm
c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -lpthread -lm
cc ma_profiling.c -o ./bin/ma_profiling -Wall -lpthread -lm
c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -lpthread -lm
cc ma_dithering.c -o ./bin/ma_dithering -Wall -lpthread -lm
c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -lpthread -lm
#!/bin/bash
cc ma_test_0.c -o ./bin/ma_test_0 -Wall -ldl -lpthread -lm
c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -ldl -lpthread -lm
cc ma_profiling.c -o ./bin/ma_profiling -Wall -ldl -lpthread -lm -mfpu=neon -O2
c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -ldl -lpthread -lm -mfpu=neon -O2
cc ma_dithering.c -o ./bin/ma_dithering -Wall -ldl -lpthread -lm
c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -ldl -lpthread -lm
\ No newline at end of file
@echo off
SET c_compiler=gcc
SET cpp_compiler=g++
SET options=-Wall
@echo on
%c_compiler% ma_test_0.c -o ./bin/ma_test_0.exe %options%
%cpp_compiler% ma_test_0.cpp -o ./bin/ma_test_0_cpp.exe %options%
%c_compiler% ma_profiling.c -o ./bin/ma_profiling.exe %options% -s -O2
%cpp_compiler% ma_profiling.c -o ./bin/ma_profiling_cpp.exe %options% -s -O2
%c_compiler% ma_dithering.c -o ./bin/ma_dithering.exe %options%
%cpp_compiler% ma_dithering.c -o ./bin/ma_dithering_cpp.exe %options%
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment