Files
nyash-aes-xts256-plain64/nyash_client/src/open_cl/build_spirv.sh
T

8 lines
273 B
Bash
Raw Normal View History

2026-03-14 14:13:18 +01:00
#!/bin/sh
out_file="$1"
clang -c -target spir64 -O0 -finclude-default-header -I ./ -emit-llvm -o nyash_aes_xts256_plain.bc nyash_aes_xts256_plain.cl
#llc -march=spir64 nyash_aes_xts256_plain.bc -filetype=obj -o $out_file
llvm-spirv -o $out_file nyash_aes_xts256_plain.bc