mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 05:17:45 -04:00
30 lines
No EOL
465 B
Bash
Executable file
30 lines
No EOL
465 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
# ensure build
|
|
make -s
|
|
|
|
# clear POCL cache
|
|
rm -rf ~/.cache/pocl
|
|
|
|
# rebuild runtime
|
|
make -C runtime clean
|
|
make -C runtime
|
|
|
|
# rebuild drivers
|
|
make -C driver clean
|
|
make -C driver
|
|
|
|
# rebuild runtime tests
|
|
make -C tests/runtime clean
|
|
make -C tests/runtime
|
|
|
|
# rebuild regression tests
|
|
make -C tests/regression clean-all
|
|
make -C tests/regression
|
|
|
|
# rebuild opencl tests
|
|
make -C tests/opencl clean-all
|
|
make -C tests/opencl |