diff options
Diffstat (limited to 'arch/um/Makefile')
| -rw-r--r-- | arch/um/Makefile | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/arch/um/Makefile b/arch/um/Makefile index c8016a98483b..5d5ed726faa0 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile | |||
| @@ -64,9 +64,14 @@ CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \ | |||
| 64 | 64 | ||
| 65 | AFLAGS += $(ARCH_INCLUDE) | 65 | AFLAGS += $(ARCH_INCLUDE) |
| 66 | 66 | ||
| 67 | USER_CFLAGS := $(patsubst -I%,,$(CFLAGS)) | 67 | USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\ |
| 68 | USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \ | 68 | $(patsubst -I%,,$(CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \ |
| 69 | $(MODE_INCLUDE) -D_FILE_OFFSET_BITS=64 | 69 | -D_FILE_OFFSET_BITS=64 |
| 70 | |||
| 71 | include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH) | ||
| 72 | |||
| 73 | #This will adjust *FLAGS accordingly to the platform. | ||
| 74 | include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS) | ||
| 70 | 75 | ||
| 71 | # -Derrno=kernel_errno - This turns all kernel references to errno into | 76 | # -Derrno=kernel_errno - This turns all kernel references to errno into |
| 72 | # kernel_errno to separate them from the libc errno. This allows -fno-common | 77 | # kernel_errno to separate them from the libc errno. This allows -fno-common |
| @@ -74,15 +79,11 @@ USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \ | |||
| 74 | # errnos. | 79 | # errnos. |
| 75 | # These apply to kernelspace only. | 80 | # These apply to kernelspace only. |
| 76 | 81 | ||
| 77 | CFLAGS += -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \ | 82 | KERNEL_DEFINES = -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \ |
| 78 | -Dmktime=kernel_mktime | 83 | -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES) |
| 84 | CFLAGS += $(KERNEL_DEFINES) | ||
| 79 | CFLAGS += $(call cc-option,-fno-unit-at-a-time,) | 85 | CFLAGS += $(call cc-option,-fno-unit-at-a-time,) |
| 80 | 86 | ||
| 81 | include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH) | ||
| 82 | |||
| 83 | #This will adjust *FLAGS accordingly to the platform. | ||
| 84 | include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS) | ||
| 85 | |||
| 86 | # These are needed for clean and mrproper, since in that case .config is not | 87 | # These are needed for clean and mrproper, since in that case .config is not |
| 87 | # included; the values here are meaningless | 88 | # included; the values here are meaningless |
| 88 | 89 | ||
