summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-07 03:10:03 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-07 03:10:03 +0000
commit597c60015b24071d780f051b6e7bd179efcc69e2 (patch)
treedc17f8a79399f8a3bfe013a4df0caa66facc294d /nuttx
parent45fe3f79433403d54626d830d2f0932e0af57f2d (diff)
downloadpx4-nuttx-597c60015b24071d780f051b6e7bd179efcc69e2.tar.gz
px4-nuttx-597c60015b24071d780f051b6e7bd179efcc69e2.tar.bz2
px4-nuttx-597c60015b24071d780f051b6e7bd179efcc69e2.zip
X11 stuff doesn't build correctly on Cygwin
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1474 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/arch/sim/src/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/nuttx/arch/sim/src/Makefile b/nuttx/arch/sim/src/Makefile
index ec01ce406..05b13e739 100644
--- a/nuttx/arch/sim/src/Makefile
+++ b/nuttx/arch/sim/src/Makefile
@@ -45,7 +45,10 @@ CSRCS = up_initialize.c up_idle.c up_interruptcontext.c \
up_releasepending.c up_reprioritizertr.c \
up_exit.c up_schedulesigaction.c up_allocateheap.c \
up_devconsole.c up_framebuffer.c
-HOSTSRCS = up_stdio.c up_hostusleep.c up_x11framebuffer.c
+HOSTSRCS = up_stdio.c up_hostusleep.c
+ifneq ($(HOSTOS),Cygwin)
+ HOSTSRCS += up_x11framebuffer.c
+endif
ifeq ($(CONFIG_FS_FAT),y)
CSRCS += up_blockdevice.c up_deviceimage.c
endif
@@ -63,7 +66,11 @@ SRCS = $(ASRCS) $(CSRCS) $(HOSTSRCS)
OBJS = $(AOBJS) $(COBJS) $(HOSTOBJS)
LDFLAGS = $(ARCHSCRIPT)
-STDLIBS = -lX11 -lXext -lc
+ifneq ($(HOSTOS),Cygwin)
+ STDLIBS = -lX11 -lXext -lc
+else
+ STDLIBS = -lc
+endif
ifeq ($(CONFIG_FS_FAT),y)
STDLIBS += -lz
endif