this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25664 from nlaykh/csdp

Fixes for Alpine

authored by

Marcello Seri and committed by
GitHub
6c3f73f4 03178cf5

+6 -1
+6 -1
packages/conf-lapack/conf-lapack.1/opam
··· 5 5 bug-reports: "https://github.com/ocaml/opam-repository/issues" 6 6 license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 7 7 build: [ 8 - ["sh" "-exc" "cc $CFLAGS test.c ${LACAML_LIBS:--llapack}"] {os != "macos" & os != "freebsd" & os != "win32"} 8 + ["sh" "-exc" "cc $CFLAGS test.c ${LACAML_LIBS:--llapack}"] {os != "macos" & os != "freebsd" & os != "win32" & os-distribution != "alpine"} 9 + ["sh" "-exc" "cc $CFLAGS test.c ${LACAML_LIBS:--llapack -lopenblas}"] {os-distribution = "alpine"} 9 10 ["sh" "-exc" "${CC:-gcc} $CFLAGS test.c ${LACAML_LIBS:--llapack} $LDFLAGS"] {os = "freebsd"} 10 11 ["sh" "-exc" "cc -framework Accelerate $CFLAGS test.c ${LACAML_LIBS:--llapack}"] {os = "macos"} 11 12 ["%{build}%/test-win.sh"] {os = "win32"} ··· 22 23 ["lapack" "gcc"] {os = "freebsd"} 23 24 ["lapack"] {os = "win32" & os-distribution = "cygwinports"} 24 25 ] 26 + depends: [ 27 + "conf-openblas" {os-distribution = "alpine"} 28 + ] 25 29 synopsis: "Virtual package for LAPACK configuration" 26 30 description: """ 27 31 Virtual package relying on a LAPACK (Linear Algebra) library installation. ··· 32 36 ["test-win.sh" "md5=8143befd9947d11f4baecf3dbf0167f5"] 33 37 ] 34 38 flags: conf 39 +