Skip to content

Commit

Permalink
Restore compile_threaded selector.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgfouca committed Nov 28, 2017
1 parent cebdbbe commit 04482e3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/Tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,14 @@ PIO_VERSION ?= $(shell $(CASEROOT)/xmlquery --caseroot $(CASEROOT) PIO_VERSION -
# Determine whether to compile threaded or not
# Set the THREADDIR for the shared build
# based on the threaded build status
compile_threaded = false
ifeq ($(strip $(SMP)),TRUE)
THREADDIR = threads
compile_threaded = true
else
ifeq ($(strip $(BUILD_THREADED)),TRUE)
THREADDIR = threads
compile_threaded = true
else
THREADDIR = nothreads
endif
Expand Down

0 comments on commit 04482e3

Please sign in to comment.