Skip to content

Commit

Permalink
[OpenMP] Fix building for 32-bit DragonFly, NetBSD, OpenBSD (#70527)
Browse files Browse the repository at this point in the history
Fixing ```#error "Unknown or unsupported OS"```

(cherry picked from commit 223852a)
  • Loading branch information
brad0 authored and tru committed Oct 31, 2023
1 parent a8046f7 commit 9d0ca25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openmp/runtime/src/kmp_runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8858,7 +8858,8 @@ __kmp_determine_reduction_method(

#elif KMP_ARCH_X86 || KMP_ARCH_ARM || KMP_ARCH_AARCH || KMP_ARCH_MIPS

#if KMP_OS_LINUX || KMP_OS_FREEBSD || KMP_OS_WINDOWS || KMP_OS_HURD
#if KMP_OS_LINUX || KMP_OS_DRAGONFLY || KMP_OS_FREEBSD || KMP_OS_NETBSD || \
KMP_OS_OPENBSD || KMP_OS_WINDOWS || KMP_OS_HURD

// basic tuning

Expand Down

0 comments on commit 9d0ca25

Please sign in to comment.