mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 11:56:10 +08:00
Don't build in sched_processtimer.c if CONFIG_SCHED_TICKLESS is selected.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
# arch/sim/src/Makefile
|
# arch/sim/src/Makefile
|
||||||
#
|
#
|
||||||
# Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved.
|
# Copyright (C) 2007, 2008, 2011-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
|
||||||
@@ -47,6 +47,10 @@ CSRCS = up_initialize.c up_idle.c up_interruptcontext.c \
|
|||||||
up_devconsole.c
|
up_devconsole.c
|
||||||
HOSTSRCS = up_stdio.c up_hostusleep.c
|
HOSTSRCS = up_stdio.c up_hostusleep.c
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_SCHED_TICKLESS),y)
|
||||||
|
CSRCS += up_tickless.c
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
||||||
CSRCS += up_lcd.c
|
CSRCS += up_lcd.c
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user