-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
> Since Dune 2.8, it’s possible to deactivate the systematic > prepending of flags coming from ocamlc -config to the C compiler > command line. > The value true is the default for Dune 3.0. https://dune.readthedocs.io/en/stable/dune-files.html#use-standard-c-and-cxx-flags
- Loading branch information
Showing
5 changed files
with
25 additions
and
16 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(lang dune 2.6) | ||
(lang dune 3.0) | ||
(name bigstringaf) | ||
(formatting disabled) | ||
(formatting (enabled_for dune)) |
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 discover) | ||
(libraries dune-configurator)) | ||
(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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
(library | ||
(name bigstringaf) | ||
(name bigstringaf) | ||
(public_name bigstringaf) | ||
|
||
(foreign_stubs | ||
(language c) | ||
(names bigstringaf_stubs) | ||
(flags (:standard (:include cflags.sexp)))) | ||
|
||
(js_of_ocaml (javascript_files runtime.js)) | ||
) | ||
(names bigstringaf_stubs) | ||
(flags | ||
(:standard | ||
(:include cflags.sexp)))) | ||
(js_of_ocaml | ||
(javascript_files runtime.js))) | ||
|
||
(rule | ||
(targets cflags.sexp) | ||
(action | ||
(action | ||
(run config/discover.exe))) |
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,4 +1,4 @@ | ||
(test | ||
(name test_bigstringaf) | ||
(libraries alcotest bigstringaf) | ||
(modules test_bigstringaf s)) | ||
(modules test_bigstringaf s)) |