diff options
Diffstat (limited to 'volk/system_cleanup.sh')
-rwxr-xr-x | volk/system_cleanup.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/volk/system_cleanup.sh b/volk/system_cleanup.sh new file mode 100755 index 000000000..7ebd2caf8 --- /dev/null +++ b/volk/system_cleanup.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +cp volk_config.h include/volk/ +cd lib +case $1 in + (x86) + + case $2 in + (x86_64) + gcc -o volk_mktables -I../include -I. volk_cpu_x86.c cpuid_x86_64.S volk_rank_archs.c volk_mktables.c + ./volk_mktables + ;; + (*) + gcc -o volk_mktables -I../include -I. volk_cpu_x86.c cpuid_x86.S volk_rank_archs.c volk_mktables.c + ./volk_mktables + ;; + esac + ;; + (powerpc) + gcc -o volk_mktables -I../include -I. volk_cpu_powerpc.c volk_rank_archs.c volk_mktables.c + ./volk_mktables + ;; + (*) + gcc -o volk_mktables -I../include -I. volk_cpu_generic.c volk_rank_archs.c volk_mktables.c + ./volk_mktables + ;; +esac +mv volk_tables.h ../include/volk/ + |