-
Beta Was this translation helpful? Give feedback.
Answered by
al42and
Jul 18, 2022
Replies: 1 comment 3 replies
-
I'm not an expert, but, in short, when compiling SYCL code, clang has to do multiple stages and generate several intermediate files with such randomized names. You can read more here: https://github.com/intel/llvm/blob/sycl/sycl/doc/design/CompilerAndRuntimeDesign.md Or you can add Note: |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Bach234
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not an expert, but, in short, when compiling SYCL code, clang has to do multiple stages and generate several intermediate files with such randomized names.
You can read more here: https://github.com/intel/llvm/blob/sycl/sycl/doc/design/CompilerAndRuntimeDesign.md
Or you can add
-v
switch to clang and see it for yourself.Note:
-save-temps
flag disables this randomization and allows reproducible builds.