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

build/assembly.S: make --target=x86_64-pc-windows-gnu portable. #201

Closed
Closed
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
13 changes: 13 additions & 0 deletions build/assembly.S
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,19 @@
# include "elf/div3w-x86_64.s"
# include "elf/ct_is_square_mod_384-x86_64.s"
# elif defined(_WIN64) || defined(__CYGWIN__)
# if defined(__BLST_PORTABLE__)
# include "coff/sha256-portable-x86_64.s"
# define blst_sha256_block_data_order blst_sha256_block_ssse3
# define LSEH_begin_blst_sha256_block_data_order LSEH_begin_blst_sha256_block_ssse3
# define LSEH_body_blst_sha256_block_data_order LSEH_body_blst_sha256_block_ssse3
# define LSEH_info_blst_sha256_block_data_order_prologue LSEH_info_blst_sha256_block_ssse3_prologue
# define LSEH_body_blst_sha256_block_data_order LSEH_body_blst_sha256_block_ssse3
# define LSEH_epilogue_blst_sha256_block_data_order LSEH_epilogue_blst_sha256_block_ssse3
# define LSEH_info_blst_sha256_block_data_order_body LSEH_info_blst_sha256_block_ssse3_body
# define LSEH_epilogue_blst_sha256_block_data_order LSEH_epilogue_blst_sha256_block_ssse3
# define LSEH_end_blst_sha256_block_data_order LSEH_end_blst_sha256_block_ssse3
# define LSEH_info_blst_sha256_block_data_order_epilogue LSEH_info_blst_sha256_block_ssse3_epilogue
# endif
# include "coff/sha256-x86_64.s"
# if defined(__ADX__) || defined(__BLST_PORTABLE__)
# include "coff/ctx_inverse_mod_384-x86_64.s"
Expand Down