Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

intel-llvm-sycl/dpcpp compiler linking error: soft-float modules with double-float modules #17726

Open
ct-clmsn opened this issue Mar 29, 2025 · 6 comments
Labels
bug Something isn't working v6.0.0 Issues found in release 6.0.0

Comments

@ct-clmsn
Copy link

ct-clmsn commented Mar 29, 2025

Describe the bug

I've compiled the intel-llvm-sycl/dpcpp compiler from GitHub here specifically to use the compiler with an Intel GPU: https://github.com/intel/llvm

Right now, I'd like to compile a simple "hello world" program that can print out an the Intel Arc A750 GPU that I've installed on the machine.

I've compiled this program successfully using the Adaptive C++ compiler from here: https://adaptivecpp.github.io/

When using the Intel-LLVM-Sycl/dpcpp compiler with the following flags:

clang++ -DONEDPL_USE_DPCPP_BACKEND=1 -DONEDPL_USE_OPENMP_BACKEND=0 -DONEDPL_USE_TBB_BACKEND=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -O3 -DNDEBUG -std=gnu++20 -fsycl -fsycl-unnamed-lambda -fsycl-targets=spir64 -Xsycl-target-backend "-device intel_gpu_dg2_g12" hellosycl.cpp -o hello_dg12

clang++ -DONEDPL_USE_DPCPP_BACKEND=1 -DONEDPL_USE_OPENMP_BACKEND=0 -DONEDPL_USE_TBB_BACKEND=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -O3 -DNDEBUG -std=gnu++20 -fsycl -fsycl-unnamed-lambda -fsycl-targets=spir64 hellosycl.cpp -o hello_dg12

clang++ -DONEDPL_USE_DPCPP_BACKEND=1 -DONEDPL_USE_OPENMP_BACKEND=0 -DONEDPL_USE_TBB_BACKEND=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -O3 -DNDEBUG -std=gnu++20 -fsycl -fsycl-unnamed-lambda -fsycl-targets=spir64 hellosycl.cpp -o hello_dg12

clang++ -DONEDPL_USE_DPCPP_BACKEND=1 -DONEDPL_USE_OPENMP_BACKEND=0 -DONEDPL_USE_TBB_BACKEND=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -O3 -DNDEBUG -std=gnu++20 -fsycl -fsycl-targets=spir64 hellosycl.cpp -o hello_dg12

The compilation process terminates with this linking error :

/usr/bin/ld: /tmp/hello_dg12-wrapper-f79096.o: can't link soft-float modules with double-float modules

Any assistance or help would be much appreciated! I get the impression there's a flag that's missing which tells the compiler to emulate 64 bit floating point (double precision) on the GPU architecture.

I also wanted to note that the -Xsycl-targets=spir64_gen flag causes the compiler to fail and terminate with:

clang++: error: gen compiler command failed with exit code 1 (use -v to see invocation)

To reproduce

#include <sycl/sycl.hpp> int main(int argc, char* argv[]) { sycl::queue q; std::cout << "Running on " << q.get_device().get_info<sycl::info::device::name>() << "\n"; }

clang++ -DONEDPL_USE_DPCPP_BACKEND=1 -DONEDPL_USE_OPENMP_BACKEND=0 -DONEDPL_USE_TBB_BACKEND=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -O3 -DNDEBUG -std=gnu++20 -fsycl -fsycl-unnamed-lambda -fsycl-targets=spir64_gen hellosycl.cpp -o hello_dg12

Environment

Additional context

No response

@ct-clmsn ct-clmsn added the bug Something isn't working label Mar 29, 2025
@ct-clmsn
Copy link
Author

I've tried the advice outlined in this thread https://community.intel.com/t5/Intel-Fortran-Compiler/Double-precison-on-ARC-GPU/td-p/1450217with the understanding that those environment flags are for the fortran compiler.

The following compilation command:

IGC_EnableDPEmulation=1 SYCL_DEVICE_WHITE_LIST="" OverrideDefaultFP64Settings=1 clang++ -DONEDPL_USE_DPCPP_BACKEND=1 -DONEDPL_USE_OPENMP_BACKEND=0 -DONEDPL_USE_TBB_BACKEND=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -O3 -DNDEBUG -std=gnu++20 -fsycl -fsycl-unnamed-lambda -fsycl-targets=spir64 hellosycl.cpp -o hello_dg12

yields

/usr/bin/ld: /tmp/hello_dg12-wrapper-e218bb.o: can't link soft-float modules with double-float modules /usr/bin/ld: failed to merge target specific data of file /tmp/hello_dg12-wrapper-e218bb.o

are there comparable environment variables for the Intel sycl compiler?

@ct-clmsn
Copy link
Author

@AlexeySachkov
Copy link
Contributor

AlexeySachkov commented Mar 31, 2025

Hi @ct-clmsn, thanks for the report.

I don't think that this is anyhow related to fp64 support by a target device for a few reasons:

  • the simplified isolated reproducer you have does not contains device code
  • it does not use AOT
  • the error is coming from ld, i.e. host linker

Whilst we are trying to reproduce this on our end, could you please repeat the failing command with -v flag and share the output here?

@AlexeySachkov AlexeySachkov added the v6.0.0 Issues found in release 6.0.0 label Mar 31, 2025
@AlexeySachkov
Copy link
Contributor

Could you please also be a little bit more specific about your environment: what specific OS and CPU you are running on?
Am I right that your host CPU is not x86, but ARM?

@ct-clmsn
Copy link
Author

ct-clmsn commented Apr 1, 2025

I'm currently running on RISC-V with Ubuntu 24.04.1 LTS; I've been working on porting the environment.

@ct-clmsn
Copy link
Author

ct-clmsn commented Apr 1, 2025

compilation command with -v:

/opt/sycl/llvm/build/bin/clang++ -v -DONEDPL_USE_DPCPP_BACKEND=1 -DONEDPL_USE_OPENMP_BACKEND=0 -DONEDPL_USE_TBB_BACKEND=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -isystem /opt/install/include -O3 -DNDEBUG -std=gnu++20 -fsycl -fsycl-unnamed-lambda -fsycl-targets=spir64_gen hellosycl.cpp -o hello_dg12

output:

clang version 19.0.0git
Target: riscv64-unknown-linux-gnu
Thread model: posix
InstalledDir: /opt/sycl/llvm/build/bin
Build config: +assertions
Found candidate GCC installation: /usr/lib/gcc/riscv64-linux-gnu/13
Selected GCC installation: /usr/lib/gcc/riscv64-linux-gnu/13
"/opt/sycl/llvm/build/bin/clang-19" -cc1 -triple spir64_gen-unknown-unknown -aux-triple riscv64-unknown-linux-gnu -fsycl-is-device -fdeclare-spirv-builtins -mllvm -sycl-opt -fenable-sycl-dae -fsycl-instrument-device-code -Wno-sycl-strict -fsycl-int-header=/tmp/hellosycl-header-144023.h -fsycl-int-footer=/tmp/hellosycl-footer-a799af.h -sycl-std=2020 -ffine-grained-bitfield-accesses -fsycl-unique-prefix=uid71488d5950d7f9ce -D__SYCL_ANY_DEVICE_HAS_ANY_ASPECT__=1 -Wspir-compat -emit-llvm-bc -emit-llvm-uselists -dumpdir hello_dg12- -disable-free -clear-ast-before-backend -main-file-name hellosycl.cpp -fsycl-use-main-file-name -full-main-file-name hellosycl.cpp -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -aux-target-cpu generic-rv64 -aux-target-feature +m -aux-target-feature +a -aux-target-feature +f -aux-target-feature +d -aux-target-feature +c -aux-target-feature +zicsr -aux-target-feature +zmmul -aux-target-feature -b -aux-target-feature -e -aux-target-feature -h -aux-target-feature -shcounterenw -aux-target-feature -shgatpa -aux-target-feature -shtvala -aux-target-feature -shvsatpa -aux-target-feature -shvstvala -aux-target-feature -shvstvecd -aux-target-feature -smaia -aux-target-feature -smcdeleg -aux-target-feature -smcsrind -aux-target-feature -smepmp -aux-target-feature -smstateen -aux-target-feature -ssaia -aux-target-feature -ssccfg -aux-target-feature -ssccptr -aux-target-feature -sscofpmf -aux-target-feature -sscounterenw -aux-target-feature -sscsrind -aux-target-feature -ssstateen -aux-target-feature -ssstrict -aux-target-feature -sstc -aux-target-feature -sstvala -aux-target-feature -sstvecd -aux-target-feature -ssu64xl -aux-target-feature -svade -aux-target-feature -svadu -aux-target-feature -svbare -aux-target-feature -svinval -aux-target-feature -svnapot -aux-target-feature -svpbmt -aux-target-feature -v -aux-target-feature -xcvalu -aux-target-feature -xcvbi -aux-target-feature -xcvbitmanip -aux-target-feature -xcvelw -aux-target-feature -xcvmac -aux-target-feature -xcvmem -aux-target-feature -xcvsimd -aux-target-feature -xsfcease -aux-target-feature -xsfvcp -aux-target-feature -xsfvfnrclipxfqf -aux-target-feature -xsfvfwmaccqqq -aux-target-feature -xsfvqmaccdod -aux-target-feature -xsfvqmaccqoq -aux-target-feature -xsifivecdiscarddlone -aux-target-feature -xsifivecflushdlone -aux-target-feature -xtheadba -aux-target-feature -xtheadbb -aux-target-feature -xtheadbs -aux-target-feature -xtheadcmo -aux-target-feature -xtheadcondmov -aux-target-feature -xtheadfmemidx -aux-target-feature -xtheadmac -aux-target-feature -xtheadmemidx -aux-target-feature -xtheadmempair -aux-target-feature -xtheadsync -aux-target-feature -xtheadvdot -aux-target-feature -xventanacondops -aux-target-feature -za128rs -aux-target-feature -za64rs -aux-target-feature -zaamo -aux-target-feature -zabha -aux-target-feature -zacas -aux-target-feature -zalrsc -aux-target-feature -zama16b -aux-target-feature -zawrs -aux-target-feature -zba -aux-target-feature -zbb -aux-target-feature -zbc -aux-target-feature -zbkb -aux-target-feature -zbkc -aux-target-feature -zbkx -aux-target-feature -zbs -aux-target-feature -zca -aux-target-feature -zcb -aux-target-feature -zcd -aux-target-feature -zce -aux-target-feature -zcf -aux-target-feature -zcmop -aux-target-feature -zcmp -aux-target-feature -zcmt -aux-target-feature -zdinx -aux-target-feature -zfa -aux-target-feature -zfh -aux-target-feature -zfhmin -aux-target-feature -zfinx -aux-target-feature -zhinx -aux-target-feature -zhinxmin -aux-target-feature -zic64b -aux-target-feature -zicbom -aux-target-feature -zicbop -aux-target-feature -zicboz -aux-target-feature -ziccamoa -aux-target-feature -ziccif -aux-target-feature -zicclsm -aux-target-feature -ziccrse -aux-target-feature -zicntr -aux-target-feature -zicond -aux-target-feature -zifencei -aux-target-feature -zihintntl -aux-target-feature -zihintpause -aux-target-feature -zihpm -aux-target-feature -zimop -aux-target-feature -zk -aux-target-feature -zkn -aux-target-feature -zknd -aux-target-feature -zkne -aux-target-feature -zknh -aux-target-feature -zkr -aux-target-feature -zks -aux-target-feature -zksed -aux-target-feature -zksh -aux-target-feature -zkt -aux-target-feature -zvbb -aux-target-feature -zvbc -aux-target-feature -zve32f -aux-target-feature -zve32x -aux-target-feature -zve64d -aux-target-feature -zve64f -aux-target-feature -zve64x -aux-target-feature -zvfh -aux-target-feature -zvfhmin -aux-target-feature -zvkb -aux-target-feature -zvkg -aux-target-feature -zvkn -aux-target-feature -zvknc -aux-target-feature -zvkned -aux-target-feature -zvkng -aux-target-feature -zvknha -aux-target-feature -zvknhb -aux-target-feature -zvks -aux-target-feature -zvksc -aux-target-feature -zvksed -aux-target-feature -zvksg -aux-target-feature -zvksh -aux-target-feature -zvkt -aux-target-feature -zvl1024b -aux-target-feature -zvl128b -aux-target-feature -zvl16384b -aux-target-feature -zvl2048b -aux-target-feature -zvl256b -aux-target-feature -zvl32768b -aux-target-feature -zvl32b -aux-target-feature -zvl4096b -aux-target-feature -zvl512b -aux-target-feature -zvl64b -aux-target-feature -zvl65536b -aux-target-feature -zvl8192b -aux-target-feature -experimental-smmpm -aux-target-feature -experimental-smnpm -aux-target-feature -experimental-ssnpm -aux-target-feature -experimental-sspm -aux-target-feature -experimental-ssqosid -aux-target-feature -experimental-supm -aux-target-feature -experimental-zalasr -aux-target-feature -experimental-zfbfmin -aux-target-feature -experimental-zicfilp -aux-target-feature -experimental-zicfiss -aux-target-feature -experimental-ztso -aux-target-feature -experimental-zvfbfmin -aux-target-feature -experimental-zvfbfwma -aux-target-feature +relax -debugger-tuning=gdb -fdebug-compilation-dir=/opt/test -v -fcoverage-compilation-dir=/opt/test -resource-dir /opt//sycl/llvm/build/lib/clang/19 -internal-isystem /opt/sycl/llvm/build/bin/../include/sycl -internal-isystem /opt/sycl/llvm/build/bin/../include/sycl/stl_wrappers -internal-isystem /opt//sycl/llvm/build/bin/../include -isystem /opt/include -D ONEDPL_USE_DPCPP_BACKEND=1 -D ONEDPL_USE_OPENMP_BACKEND=0 -D ONEDPL_USE_TBB_BACKEND=0 -D PSTL_USE_PARALLEL_POLICIES=0 -D _GLIBCXX_USE_TBB_PAR_BACKEND=0 -D NDEBUG -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13 -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/riscv64-linux-gnu/c++/13 -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13/backward -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13 -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/riscv64-linux-gnu/c++/13 -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13/backward -internal-isystem /opt/sycl/llvm/build/lib/clang/19/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../riscv64-linux-gnu/include -internal-externc-isystem /usr/include/riscv64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -internal-isystem /opt/sycl/llvm/build/lib/clang/19/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/riscv64-linux-gnu/13/../../../../riscv64-linux-gnu/include -internal-externc-isystem /usr/include/riscv64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -O3 -std=gnu++20 -fdeprecated-macro -ferror-limit 19 -fgpu-rdc -fno-signed-char -fgnuc-version=4.2.1 -fno-implicit-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fcolor-diagnostics -vectorize-loops -vectorize-slp -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/hellosycl-b32319.bc -x c++ hellosycl.cpp
clang -cc1 version 19.0.0git based upon LLVM 19.0.0git default target riscv64-unknown-linux-gnu
ignoring nonexistent directory "/usr/lib/gcc/riscv64-linux-gnu/13/../../../../riscv64-linux-gnu/include"
ignoring nonexistent directory "/include"
ignoring nonexistent directory "/usr/lib/gcc/riscv64-linux-gnu/13/../../../../riscv64-linux-gnu/include"
ignoring nonexistent directory "/include"
ignoring duplicate directory "/usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13"
ignoring duplicate directory "/usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/riscv64-linux-gnu/c++/13"
ignoring duplicate directory "/usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13/backward"
ignoring duplicate directory "/opt/sycl/llvm/build/lib/clang/19/include"
ignoring duplicate directory "/usr/local/include"
ignoring duplicate directory "/usr/include/riscv64-linux-gnu"
ignoring duplicate directory "/usr/include"
ignoring duplicate directory "/usr/local/include"
ignoring duplicate directory "/opt//sycl/llvm/build/lib/clang/19/include"
ignoring duplicate directory "/usr/include"
#include "..." search starts here:
#include <...> search starts here:
/home/ct/git/install/include
/opt/sycl/llvm/build/bin/../include/sycl
/opt/sycl/llvm/build/bin/../include/sycl/stl_wrappers
/opt/sycl/llvm/build/bin/../include
/usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13
/usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/riscv64-linux-gnu/c++/13
/usr/lib/gcc/riscv64-linux-gnu/13/../../../../include/c++/13/backward
/opt/sycl/llvm/build/lib/clang/19/include
/usr/local/include
/usr/include/riscv64-linux-gnu
/usr/include
End of search list.
"/opt/sycl/llvm/build/bin/llvm-link" /tmp/hellosycl-b32319.bc -o /tmp/hellosycl-776043.bc --suppress-warnings
"/opt/sycl/llvm/build/bin/llvm-link" -only-needed /tmp/hellosycl-776043.bc /opt/sycl/llvm/build/bin/../lib/libsycl-crt.bc /opt/sycl/llvm/build/bin/../lib/libsycl-complex.bc /opt/sycl/llvm/build/bin/../lib/libsycl-complex-fp64.bc /opt/sycl/llvm/build/bin/../lib/libsycl-cmath.bc /opt/sycl/llvm/build/bin/../lib/libsycl-cmath-fp64.bc /opt/sycl/llvm/build/bin/../lib/libsycl-imf.bc /opt/sycl/llvm/build/bin/../lib/libsycl-imf-fp64.bc /opt/sycl/llvm/build/bin/../lib/libsycl-imf-bf16.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-cassert.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-cstring.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-complex.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-complex-fp64.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-cmath.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-cmath-fp64.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-imf.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-imf-fp64.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-imf-bf16.bc /opt/sycl/llvm/build/bin/../lib/libsycl-fallback-bfloat16.bc /opt/sycl/llvm/build/bin/../lib/libsycl-itt-user-wrappers.bc /opt/sycl/llvm/build/bin/../lib/libsycl-itt-compiler-wrappers.bc /opt/sycl/llvm/build/bin/../lib/libsycl-itt-stubs.bc -o /tmp/hellosycl-3456ab.bc --suppress-warnings
"/opt/sycl/llvm/build/bin/sycl-post-link" -O3 -device-globals -properties -spec-const=emulation -split=auto -emit-only-kernels-as-entry-points -emit-param-info -symbols -emit-exported-symbols -emit-imported-symbols -split-esimd -lower-esimd -o /tmp/hellosycl-1d9ee5.table /tmp/hellosycl-3456ab.bc
"/opt/sycl/llvm/build/bin/file-table-tform" -extract=Code -drop_titles -o /tmp/hellosycl-a4fd69.txt /tmp/hellosycl-1d9ee5.table
"/opt/sycl/llvm/build/bin/llvm-foreach" --in-file-list=/tmp/hellosycl-a4fd69.txt --in-replace=/tmp/hellosycl-a4fd69.txt --out-ext=spv --out-file-list=/tmp/hellosycl-f3a574.txt --out-replace=/tmp/hellosycl-f3a574.txt -- /opt/sycl/llvm/build/bin/llvm-spirv -o /tmp/hellosycl-f3a574.txt -spirv-max-version=1.4 -spirv-debug-info-version=nonsemantic-shader-200 -spirv-allow-unknown-intrinsics=llvm.genx. -spirv-ext=-all,+SPV_EXT_shader_atomic_float_add,+SPV_EXT_shader_atomic_float_min_max,+SPV_KHR_no_integer_wrap_decoration,+SPV_KHR_float_controls,+SPV_KHR_expect_assume,+SPV_KHR_linkonce_odr,+SPV_INTEL_subgroups,+SPV_INTEL_media_block_io,+SPV_INTEL_device_side_avc_motion_estimation,+SPV_INTEL_fpga_loop_controls,+SPV_INTEL_unstructured_loop_controls,+SPV_INTEL_fpga_reg,+SPV_INTEL_blocking_pipes,+SPV_INTEL_function_pointers,+SPV_INTEL_kernel_attributes,+SPV_INTEL_io_pipes,+SPV_INTEL_inline_assembly,+SPV_INTEL_arbitrary_precision_integers,+SPV_INTEL_float_controls2,+SPV_INTEL_vector_compute,+SPV_INTEL_fast_composite,+SPV_INTEL_arbitrary_precision_fixed_point,+SPV_INTEL_arbitrary_precision_floating_point,+SPV_INTEL_variable_length_array,+SPV_INTEL_fp_fast_math_mode,+SPV_INTEL_long_constant_composite,+SPV_INTEL_arithmetic_fence,+SPV_INTEL_global_variable_decorations,+SPV_INTEL_cache_controls,+SPV_INTEL_fpga_buffer_location,+SPV_INTEL_fpga_argument_interfaces,+SPV_INTEL_fpga_invocation_pipelining_attributes,+SPV_INTEL_fpga_latency_control,+SPV_KHR_shader_clock,+SPV_INTEL_bindless_images,+SPV_INTEL_token_type,+SPV_INTEL_bfloat16_conversion,+SPV_INTEL_joint_matrix,+SPV_INTEL_hw_thread_queries,+SPV_KHR_uniform_group_instructions,+SPV_INTEL_masked_gather_scatter,+SPV_INTEL_tensor_float32_conversion,+SPV_INTEL_optnone,+SPV_KHR_non_semantic_info,+SPV_KHR_cooperative_matrix /tmp/hellosycl-a4fd69.txt
"/opt/sycl/llvm/build/bin/llvm-foreach" --out-ext=out --in-file-list=/tmp/hellosycl-f3a574.txt --in-replace=/tmp/hellosycl-f3a574.txt --out-file-list=/tmp/hellosycl-fb5283.out --out-replace=/tmp/hellosycl-fb5283.out -- ocloc -output /tmp/hellosycl-fb5283.out -file /tmp/hellosycl-f3a574.txt -output_no_suffix -spirv_input
llvm-foreach: No such file or directory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working v6.0.0 Issues found in release 6.0.0
Projects
None yet
Development

No branches or pull requests

2 participants