我想使用clang++而不是g++来编译我的c++文件,而g++是系统的默认编译器。我已经尝试过sudo update-alternatives --install c++ c++ /home/guo/bin/clang++ 100并设置了CC环境。但它们不起作用。Bazel仍然使用g++作为编译器。
ERROR: /home/guo/utils
我是linux和make的新手,我已经写了一个makefile来自动将.tex文件编译成.pdf。但是当我调用make时,它会说"Nothing to be to 'first.pdf'",下面是我的makefile: PDF= $(TEXFILE:.tex=.pdf)
pdflatex $<
$(PD