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.
我注意到在 Gnu Make 的隐式规则中是变量 $(TARGET_ARCH) 例如:
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ LINK.o = $(CC) $(LDFLAGS) $(TARGET_ARCH)
我认为交叉编译需要这个变量,但我在 Gnu Make 文档中没有找到任何关于它的信息。
我同意它可能是为了交叉编译。变量 TARGET_ARCH 没有默认值 - 最终用户可以根据需要定义它。