Hello, I encountered an issue with response file handling in wllvm.
I have a source file hello.cpp and a response file res.rsp containing:
I run the following command:
LLVM_COMPILER=clang wllvm++ @res.rsp
The compilation succeeds and an object file is generated, but I get the following warning:
WARNING: Did not recognize the compiler flag "@res.rsp"
Moreover, the resulting object file does not contain the llvm_bc section, meaning the bitcode is not embedded as expected.
It seems that wllvm does not expand or properly process the @response_file syntax.
Hello, I encountered an issue with response file handling in
wllvm.I have a source file
hello.cppand a response fileres.rspcontaining:I run the following command:
The compilation succeeds and an object file is generated, but I get the following warning:
Moreover, the resulting object file does not contain the
llvm_bcsection, meaning the bitcode is not embedded as expected.It seems that
wllvmdoes not expand or properly process the@response_filesyntax.