summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-15 10:15:19 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-15 10:15:19 -0600
commit48b44f4fd3a703486ad0d847f937b4dbde592349 (patch)
tree0e4f77c3cf8e1fb7b5085ba94da3d8bd03bb4ddd /nuttx/binfmt/Makefile
parent8a1169b515470b959633c5fba69a135d7789a96f (diff)
downloadnuttx-48b44f4fd3a703486ad0d847f937b4dbde592349.tar.gz
nuttx-48b44f4fd3a703486ad0d847f937b4dbde592349.tar.bz2
nuttx-48b44f4fd3a703486ad0d847f937b4dbde592349.zip
execv() is a basic system interface. It should not be in libc/ but rather in sched/task. Its symboltable helper logic also belongs in the kernel but belings in binfmt/ with the other symbol table logic
Diffstat (limited to 'nuttx/binfmt/Makefile')
-rw-r--r--nuttx/binfmt/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/binfmt/Makefile b/nuttx/binfmt/Makefile
index 4e1f18ebc..c5cfe9736 100644
--- a/nuttx/binfmt/Makefile
+++ b/nuttx/binfmt/Makefile
@@ -1,7 +1,7 @@
############################################################################
# nxflat/Makefile
#
-# Copyright (C) 2007-2009, 2012-2013 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007-2009, 2012-2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -61,6 +61,10 @@ endif
BINFMT_CSRCS += symtab_findbyname.c symtab_findbyvalue.c
BINFMT_CSRCS += symtab_findorderedbyname.c symtab_findorderedbyvalue.c
+ifeq ($(CONFIG_LIBC_EXECFUNCS),y)
+BINFMT_CSRCS += binfmt_execsymtab.c
+endif
+
# Add configured binary modules
VPATH =