基本上我想使用GNU编译器而不是Intel。
makefile的输出具有以下内容:
#environment ISL_ROOT = /opt/shared/sw/x86_64-unknown-linux-gnu/isl/0.14-rhel6 ... ... ... #default .VARIABLES:= # 环境 icc = CC # 环境 CVS_RSH = ssh
以下是makefile的一部分:
-include ../makefile.init
RM := rm -rf
# All of the sources participating in the build are defined here
-include sources.mk
-include oed/subdir.mk
-include objects/subdir.mk
-include subdir.mk
-include objects.mk
ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(CC_DEPS)),)
-include $(CC_DEPS)
..
..
感谢任何帮助..