Skip to content

Commit

Permalink
Merge pull request #40 from mseri/0.3.0-backports
Browse files Browse the repository at this point in the history
configure: add missing unknown platform
  • Loading branch information
mseri authored Jun 2, 2022
2 parents 56e7605 + 509b3ec commit a5e067c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Hack Git CRLF for ocaml/setup-ocaml issue #529
if: ${{ startsWith(matrix.os, 'windows-') }}
run: |
& "C:\Program Files\Git\bin\git.exe" config --system core.autocrlf input
- name: Use OCaml ${{ matrix.ocaml-version }}
uses: avsm/setup-ocaml@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions eigen/configure/configure.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ let detect_system_os =
#endif
#elif WIN32
#define PLATFORM_NAME "windows"
#else
#define PLATFORM_NAME "unknown"
#endif
|}

Expand Down
2 changes: 2 additions & 0 deletions eigen_cpp/configure/configure.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ let detect_system_os =
#endif
#elif WIN32
#define PLATFORM_NAME "windows"
#else
#define PLATFORM_NAME "unknown"
#endif
|}

Expand Down

0 comments on commit a5e067c

Please sign in to comment.