在makefile中,有一行:
CFLAGS += $(shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1
&& echo -fno-stack-protector)
Run Code Online (Sandbox Code Playgroud)
有什么用
shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1?它似乎什么都不做.整条线路如何运作?提前致谢.