Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Experiment ioxid config improvements #213

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ InsertNewlineAtEOF: true
NamespaceIndentation: All
SpaceAfterTemplateKeyword: false
TabWidth: 4
IncludeBlocks: Preserve
...
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
use flake
use flake ${PLACEHOLDER_DEVELOP_DERIVATION:-.}
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ modules.xml
### CMake ###
CMakeLists.txt.user
CMakeCache.txt
CMakeUserPresets.json
CMakeFiles
CMakeScripts
Testing
Expand Down Expand Up @@ -640,3 +641,9 @@ callgrind.*

.ycm_extra_config.py
.color_coded

# VSCode configuration
.vscode

# direnv outputs
.direnv
14 changes: 13 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,19 @@
parallel_crypto3_tets = true;
crypto3_bechmarks = true;
parallel_crypto3_bechmarks = true;
});
});

develop-clang = (pkgs.callPackage ./proof-producer.nix {
stdenv = pkgs.llvmPackages_19.stdenv;
enableDebug = true;
runTests = true;
sanitize = true;
crypto3_tests = true;
parallel_crypto3_tets = true;
crypto3_bechmarks = true;
parallel_crypto3_bechmarks = true;
});

# The "all" package will build all packages. Convenient for CI,
# so that "nix build" will check that all packages are correct.
# The packages that have no changes will not be rebuilt, and instead
Expand Down
Loading