We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0828e75 commit d56d40fCopy full SHA for d56d40f
2 files changed
.github/workflows/ci.yaml
@@ -31,6 +31,17 @@ jobs:
31
with:
32
dev_version: 'TRUE'
33
34
+ - name: OpenMP for macOS
35
+ if: ${{ matrix.os == 'macos-latest' }}
36
+ run: |
37
+ curl -fsSL https://raw.githubusercontent.com/coatless-shell/openmp/main/install-openmp.sh | bash -s -- --yes
38
+ mkdir -p ~/.R
39
+ cat <<EOF > ~/.R/Makevars
40
+ CPPFLAGS += -Xclang -fopenmp
41
+ LDFLAGS += -lomp
42
+ EOF
43
+ cat ~/.R/Makevars
44
+
45
- name: Configure
46
run: ./configure; cat src/Makevars
47
ChangeLog
@@ -1,3 +1,8 @@
1
+2025-11-19 Dirk Eddelbuettel <edd@debian.org>
2
3
+ * .github/workflows/ci.yaml (jobs): On macOS, explicitly install and
4
+ configure OpenMP
5
6
2025-11-13 Dirk Eddelbuettel <edd@debian.org>
7
8
* R/inline.R (inlineCxxPlugin): No longer special-case macOS for
0 commit comments