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

Simplify build workflow #469

Merged
merged 11 commits into from
Jun 26, 2024
Prev Previous commit
Next Next commit
Restore default_config.h
  • Loading branch information
s-zanella committed May 20, 2024
commit 4a6b53a56ac3b98e2347f33af8185d03c83f692d
33 changes: 33 additions & 0 deletions config/default_config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// DO NOT EDIT THIS HEADER FILE. IT IS AUTO GENERATED BY CMAKE.
// Global HACL configuration file.
// The variables in here get populated by CMake

// HACL version information
#define HACL_VERSION_MAJOR 0
#define HACL_VERSION_MINOR 1
#define HACL_VERSION_PATCH 0
#define HACL_VERSION_TWEAK alpha.1

// Configure platform and features
#define TARGET_ARCHITECTURE_ID_UNKNOWN 0
#define TARGET_ARCHITECTURE_ID_X86 1
#define TARGET_ARCHITECTURE_ID_X64 2
#define TARGET_ARCHITECTURE_ID_ARM32 3
#define TARGET_ARCHITECTURE_ID_ARM64 4
#define TARGET_ARCHITECTURE_ID_SYSTEMZ 5
#define TARGET_ARCHITECTURE_ID_POWERPC64 6

#define TARGET_ARCHITECTURE 1

#define HACL_CAN_COMPILE_VEC128 1
#define HACL_CAN_COMPILE_VEC256 1
#define HACL_CAN_COMPILE_UINT128 1
#define HACL_CAN_COMPILE_VALE 1
#define LINUX_NO_EXPLICIT_BZERO 1

#ifndef HACL_CAN_COMPILE_VEC128
#define Lib_IntVector_Intrinsics_vec128 void *
#endif
#ifndef HACL_CAN_COMPILE_VEC256
#define Lib_IntVector_Intrinsics_vec256 void *
#endif