Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56023
b: refs/heads/master
c: fcbee64
h: refs/heads/master
i:
  56021: 7b03745
  56019: e523090
  56015: fe48aa4
v: v3
  • Loading branch information
Atsushi Nemoto authored and Ralf Baechle committed May 11, 2007
1 parent 8119d8b commit d0669f1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e8b6d40a007774bde5110c110290f8090c7e48ad
refs/heads/master: fcbee6410d5c4112593e7082fb8d96dfdc6c1c25
22 changes: 22 additions & 0 deletions trunk/arch/mips/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -709,3 +709,25 @@ archclean:
CLEAN_FILES += vmlinux.32 \
vmlinux.64 \
vmlinux.ecoff

quiet_cmd_syscalls_n32 = CALL-N32 $<
cmd_syscalls_n32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=n32

quiet_cmd_syscalls_o32 = CALL-O32 $<
cmd_syscalls_o32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=32

PHONY += missing-syscalls-n32 missing-syscalls-o32

missing-syscalls-n32: scripts/checksyscalls.sh FORCE
$(call cmd,syscalls_n32)

missing-syscalls-o32: scripts/checksyscalls.sh FORCE
$(call cmd,syscalls_o32)

archprepare:
ifdef CONFIG_MIPS32_N32
$(Q)$(MAKE) $(build)=arch/mips missing-syscalls-n32
endif
ifdef CONFIG_MIPS32_O32
$(Q)$(MAKE) $(build)=arch/mips missing-syscalls-o32
endif

0 comments on commit d0669f1

Please sign in to comment.