Do not build test cases that use task_create is there is an address environment
This commit is contained in:
parent
d71be2d021
commit
bd07573a00
@ -1,7 +1,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
# apps/examples/elf/tests/Makefile
|
# apps/examples/elf/tests/Makefile
|
||||||
#
|
#
|
||||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
# Copyright (C) 2012, 2014 Gregory Nutt. All rights reserved.
|
||||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -38,7 +38,7 @@
|
|||||||
include $(APPDIR)/Make.defs
|
include $(APPDIR)/Make.defs
|
||||||
|
|
||||||
ALL_SUBDIRS = errno hello helloxx longjmp mutex pthread signal task struct
|
ALL_SUBDIRS = errno hello helloxx longjmp mutex pthread signal task struct
|
||||||
BUILD_SUBDIRS = errno hello task struct
|
BUILD_SUBDIRS = errno hello struct
|
||||||
|
|
||||||
ifeq ($(CONFIG_HAVE_CXX),y)
|
ifeq ($(CONFIG_HAVE_CXX),y)
|
||||||
BUILD_SUBDIRS += helloxx
|
BUILD_SUBDIRS += helloxx
|
||||||
@ -56,6 +56,10 @@ ifneq ($(CONFIG_DISABLE_SIGNALS),y)
|
|||||||
BUILD_SUBDIRS += signal
|
BUILD_SUBDIRS += signal
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_ARCH_ADDRENV),y)
|
||||||
|
BUILD_SUBDIRS += task
|
||||||
|
endif
|
||||||
|
|
||||||
ELF_DIR = $(APPDIR)/examples/elf
|
ELF_DIR = $(APPDIR)/examples/elf
|
||||||
TESTS_DIR = $(ELF_DIR)/tests
|
TESTS_DIR = $(ELF_DIR)/tests
|
||||||
ROMFS_DIR = $(TESTS_DIR)/romfs
|
ROMFS_DIR = $(TESTS_DIR)/romfs
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
# apps/examples/nxflat/tests/Makefile
|
# apps/examples/nxflat/tests/Makefile
|
||||||
#
|
#
|
||||||
# Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
|
# Copyright (C) 2009, 2011, 2014 Gregory Nutt. All rights reserved.
|
||||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -35,7 +35,15 @@
|
|||||||
|
|
||||||
# Most of these do no build yet
|
# Most of these do no build yet
|
||||||
#SUBDIRS = errno hello hello++ longjmp mutex pthread signal task struct
|
#SUBDIRS = errno hello hello++ longjmp mutex pthread signal task struct
|
||||||
SUBDIRS = errno hello mutex pthread task struct
|
SUBDIRS = errno hello struct
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
|
||||||
|
BUILD_SUBDIRS += mutex pthread
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_ARCH_ADDRENV),y)
|
||||||
|
BUILD_SUBDIRS += task
|
||||||
|
endif
|
||||||
|
|
||||||
NXFLAT_DIR = $(APPDIR)/examples/nxflat
|
NXFLAT_DIR = $(APPDIR)/examples/nxflat
|
||||||
TESTS_DIR = $(NXFLAT_DIR)/tests
|
TESTS_DIR = $(NXFLAT_DIR)/tests
|
||||||
|
Loading…
Reference in New Issue
Block a user