-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Progress towards ARM64 support Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * Re-introduce Ofast flag Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * unit_signal: fix test Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * Update architecture detection Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * ocamlformat Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * fixup! Update architecture detection * Improve architecture and os detection Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * config: cleanup unused open Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * reintroduce -mfpmath=sse on x86_64 Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * owl_macros.h: remove empty if * owl/configure: remove devmode cflags They break the compilation with some c compilers. See #609 Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * owl_core_utils: Fix empty elif Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * Cleanup arch detection code Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * configure: update to support new lapacke packages Debian now ships lapacke separately, requiring new set of flags for the linking to work. This uses pkg-config to improve the detection of these flags. Furthermore this commit adds a workaround to solve the issue with libgcc11_s not found, which will not be addressed upstream in homebrew for the time being. Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * ocamlformat the code Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * Workaround configurator problem with windows And remove march=native from arm, since it breaks on a number of arm systems Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * configurator: make more robust wrt not officially supported platforms (e.g. bsds) * Update src/owl/config/configure.ml Co-authored-by: Thomas Gazagnaire <thomas@gazagnaire.org> * configurator: drop unnecessary dependency on stdio Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * add @jcreinhold patch for nonstandard setups See #636 Signed-off-by: Marcello Seri <marcello.seri@gmail.com> * Update src/aeos/config/configure.ml * Update src/owl/config/configure.ml --------- Signed-off-by: Marcello Seri <marcello.seri@gmail.com> Co-authored-by: Thomas Gazagnaire <thomas@gazagnaire.org>
- Loading branch information
Showing
6 changed files
with
171 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,5 @@ depends: [ | |
"dune" {>= "2.0.0"} | ||
"dune-configurator" | ||
"owl-base" {= version} | ||
"stdio" {build} | ||
"npy" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(executable | ||
(name configure) | ||
(libraries dune.configurator stdio)) | ||
(libraries dune.configurator)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters