summaryrefslogtreecommitdiff
path: root/nuttx/configs/sim/pashello
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-05-31 17:13:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-05-31 17:13:08 +0000
commit98a4a5029768be0c75d6d51fca4e73c98de4b7fa (patch)
tree75df8870063f23c8cb7d4d322575b6b2c7021065 /nuttx/configs/sim/pashello
parent52bbc6ee28f2ae7faef6a430e86c881376ff3bfb (diff)
downloadpx4-nuttx-98a4a5029768be0c75d6d51fca4e73c98de4b7fa.tar.gz
px4-nuttx-98a4a5029768be0c75d6d51fca4e73c98de4b7fa.tar.bz2
px4-nuttx-98a4a5029768be0c75d6d51fca4e73c98de4b7fa.zip
Add support for recursive mutexes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@753 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/sim/pashello')
-rw-r--r--nuttx/configs/sim/pashello/Make.defs9
1 files changed, 8 insertions, 1 deletions
diff --git a/nuttx/configs/sim/pashello/Make.defs b/nuttx/configs/sim/pashello/Make.defs
index 9f23c5da8..8b300eed6 100644
--- a/nuttx/configs/sim/pashello/Make.defs
+++ b/nuttx/configs/sim/pashello/Make.defs
@@ -35,6 +35,8 @@
include ${TOPDIR}/.config
+HOSTOS = ${shell uname -o}
+
ifneq ("${CONFIG_DEBUG}","y")
ARCHOPTIMIZATION = -g
else
@@ -62,7 +64,12 @@ AFLAGS = $(CFLAGS) -D__ASSEMBLY__
OBJEXT = .o
LIBEXT = .a
-EXEEXT =
+
+ifeq ($(HOSTOS),Cygwin)
+ EXEEXT = .exe
+else
+ EXEEXT =
+endif
ifeq ("${CONFIG_DEBUG}","y")
LDFLAGS += -g