In Linux I run commands like:
clang++ -g -O3 toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core` -o toy
Here, the output of the llvm-config
command is given as input to the clang++
command.
What is the equivalent of back ticks (``) in Windows?