diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-02-11 03:01:34 -0500 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2012-03-24 19:29:56 -0400 |
commit | 64405360cee33a058d7e07713af23aca43b96d41 (patch) | |
tree | e334e14f8a93b8998f6c4e5cffae5fdbc4a35b7c /arch | |
parent | c6b17bbd39bdb0f110c09675280630fa1a7d25a0 (diff) |
um: don't bother trying to rebuild CHECKFLAGS for USER_OBJS
... just strip NOSTDINC_FLAGS out of it for those
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/scripts/Makefile.rules | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/um/scripts/Makefile.rules b/arch/um/scripts/Makefile.rules index 2eb2843b0634..d50270d26b42 100644 --- a/arch/um/scripts/Makefile.rules +++ b/arch/um/scripts/Makefile.rules | |||
@@ -9,8 +9,6 @@ USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file)) | |||
9 | 9 | ||
10 | $(USER_OBJS:.o=.%): \ | 10 | $(USER_OBJS:.o=.%): \ |
11 | c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) -include user.h $(CFLAGS_$(basetarget).o) | 11 | c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) -include user.h $(CFLAGS_$(basetarget).o) |
12 | $(USER_OBJS) : CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ \ | ||
13 | -Dunix -D__unix__ -D__$(SUBARCH)__ $(CF) | ||
14 | 12 | ||
15 | # These are like USER_OBJS but filter USER_CFLAGS through unprofile instead of | 13 | # These are like USER_OBJS but filter USER_CFLAGS through unprofile instead of |
16 | # using it directly. | 14 | # using it directly. |
@@ -18,8 +16,9 @@ UNPROFILE_OBJS := $(foreach file,$(UNPROFILE_OBJS),$(obj)/$(file)) | |||
18 | 16 | ||
19 | $(UNPROFILE_OBJS:.o=.%): \ | 17 | $(UNPROFILE_OBJS:.o=.%): \ |
20 | c_flags = -Wp,-MD,$(depfile) $(call unprofile,$(USER_CFLAGS)) $(CFLAGS_$(basetarget).o) | 18 | c_flags = -Wp,-MD,$(depfile) $(call unprofile,$(USER_CFLAGS)) $(CFLAGS_$(basetarget).o) |
21 | $(UNPROFILE_OBJS) : CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ \ | 19 | |
22 | -Dunix -D__unix__ -D__$(SUBARCH)__ $(CF) | 20 | $(USER_OBJS) $(UNPROFILE_OBJS): \ |
21 | CHECKFLAGS := $(patsubst $(NOSTDINC_FLAGS),,$(CHECKFLAGS)) | ||
23 | 22 | ||
24 | # The stubs can't try to call mcount or update basic block data | 23 | # The stubs can't try to call mcount or update basic block data |
25 | define unprofile | 24 | define unprofile |