Add support of linking files compiled into SPIR-V object files using spirv-link (https://github.com/KhronosGroup/SPIRV-Tools#linker).
Examples:
clang --target=spirv64 test1.cl test2.cl
clang --target=spirv64 test1.cl -o test1.o clang --target=spirv64 test1.o test2.cl -o test_app.out
This will work independently from the SPIR-V generation method (via an external tool or an internal backend) and will apply to either approach that is being used.
(or: "+the spirv-link linker")