Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Makefile にスペースを含む変数を作成する必要があります。
CC=$(LFS_TGT)-gcc -B$(TOOLS)/release/lib/
それを行う正しい方法は何ですか?
更新: コードが機能しません。エラーが発生しました。bash のようなものがコマンド -B$(TOOLS)/release/lib/ を見つけられません。
あなたが何を意味するかについて私が正しく推測した場合、変数定義に余分な引用符を含めるとうまくいくはずです。
TOOLS = 'dir with spaces' CC = $(LFS_TGT)-gcc -B$(TOOLS)/release/lib/