Skip to content

Commit

Permalink
add missing option
Browse files Browse the repository at this point in the history
  • Loading branch information
laffer1 committed Jan 15, 2021
1 parent 63b5bfa commit ae769d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion share/mk/src.opts.mk
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ __DEFAULT_YES_OPTIONS = \
__DEFAULT_NO_OPTIONS = \
BSD_GREP \
CLANG_EXTRAS \
CLANG_FORMAT \
DTRACE_TESTS \
EISA \
HESIOD \
Expand Down Expand Up @@ -341,7 +342,9 @@ __DEFAULT_YES_OPTIONS+=OFED
__DEFAULT_NO_OPTIONS+=OFED
.endif

.if ${COMPILER_FEATURES:Mc++11} && (${__T} == "amd64" || ${__T} == "i386")
.if ${COMPILER_FEATURES:Mc++11} && \
(${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
${__T} == "powerpc64")
__DEFAULT_YES_OPTIONS+=OPENMP
.else
__DEFAULT_NO_OPTIONS+=OPENMP
Expand Down Expand Up @@ -483,6 +486,7 @@ MK_LLDB:= no

.if ${MK_CLANG} == "no"
MK_CLANG_EXTRAS:= no
MK_CLANG_FORMAT:= no
MK_CLANG_FULL:= no
MK_LLVM_COV:= no
.endif
Expand Down

0 comments on commit ae769d3

Please sign in to comment.