-
Notifications
You must be signed in to change notification settings - Fork 32
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 compilation for other platfroms #11
Closed
Closed
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,17 +1,17 @@ | ||
add_library(algebra prime_field_element.cc) | ||
|
||
add_executable(big_int_test big_int_test.cc) | ||
target_link_libraries(big_int_test gtest gtest_main pthread) | ||
target_link_libraries(big_int_test gtest gtest_main gmock pthread) | ||
add_test(big_int_test big_int_test) | ||
|
||
add_executable(prime_field_element_test prime_field_element_test.cc) | ||
target_link_libraries(prime_field_element_test algebra gtest gtest_main pthread) | ||
add_test(prime_field_element_test prime_field_element_test) | ||
|
||
add_executable(fraction_field_element_test fraction_field_element_test.cc) | ||
target_link_libraries(fraction_field_element_test algebra gtest gtest_main pthread) | ||
target_link_libraries(fraction_field_element_test algebra gtest gtest_main gmock pthread) | ||
add_test(fraction_field_element_test fraction_field_element_test) | ||
|
||
add_executable(elliptic_curve_test elliptic_curve_test.cc) | ||
target_link_libraries(elliptic_curve_test algebra gtest gtest_main pthread) | ||
target_link_libraries(elliptic_curve_test algebra gtest gtest_main gmock pthread) | ||
add_test(elliptic_curve_test elliptic_curve_test) |
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
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 |
---|---|---|
@@ -0,0 +1,112 @@ | ||
#ifndef STARKWARE_CRYPTO_FFI_PORTABLE_ENDIAN_H_ | ||
#define STARKWARE_CRYPTO_FFI_PORTABLE_ENDIAN_H_ | ||
|
||
#if (defined(_WIN16) || defined(_WIN32) || defined(_WIN64)) && !defined(__WINDOWS__) | ||
|
||
# define __WINDOWS__ | ||
|
||
#endif | ||
|
||
#if defined(__linux__) || defined(__CYGWIN__) | ||
|
||
# include <endian.h> | ||
|
||
#elif defined(__APPLE__) | ||
|
||
# include <libkern/OSByteOrder.h> | ||
|
||
# define htobe16(x) OSSwapHostToBigInt16(x) | ||
# define htole16(x) OSSwapHostToLittleInt16(x) | ||
# define be16toh(x) OSSwapBigToHostInt16(x) | ||
# define le16toh(x) OSSwapLittleToHostInt16(x) | ||
|
||
# define htobe32(x) OSSwapHostToBigInt32(x) | ||
# define htole32(x) OSSwapHostToLittleInt32(x) | ||
# define be32toh(x) OSSwapBigToHostInt32(x) | ||
# define le32toh(x) OSSwapLittleToHostInt32(x) | ||
|
||
# define htobe64(x) OSSwapHostToBigInt64(x) | ||
# define htole64(x) OSSwapHostToLittleInt64(x) | ||
# define be64toh(x) OSSwapBigToHostInt64(x) | ||
# define le64toh(x) OSSwapLittleToHostInt64(x) | ||
|
||
# define __BYTE_ORDER BYTE_ORDER | ||
# define __BIG_ENDIAN BIG_ENDIAN | ||
# define __LITTLE_ENDIAN LITTLE_ENDIAN | ||
# define __PDP_ENDIAN PDP_ENDIAN | ||
|
||
#elif defined(__OpenBSD__) | ||
|
||
# include <sys/endian.h> | ||
|
||
#elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) | ||
|
||
# include <sys/endian.h> | ||
|
||
# define be16toh(x) betoh16(x) | ||
# define le16toh(x) letoh16(x) | ||
|
||
# define be32toh(x) betoh32(x) | ||
# define le32toh(x) letoh32(x) | ||
|
||
# define be64toh(x) betoh64(x) | ||
# define le64toh(x) letoh64(x) | ||
|
||
#elif defined(__WINDOWS__) | ||
|
||
# include <winsock2.h> | ||
# include <sys/param.h> | ||
|
||
# if BYTE_ORDER == LITTLE_ENDIAN | ||
|
||
# define htobe16(x) htons(x) | ||
# define htole16(x) (x) | ||
# define be16toh(x) ntohs(x) | ||
# define le16toh(x) (x) | ||
|
||
# define htobe32(x) htonl(x) | ||
# define htole32(x) (x) | ||
# define be32toh(x) ntohl(x) | ||
# define le32toh(x) (x) | ||
|
||
# define htobe64(x) htonll(x) | ||
# define htole64(x) (x) | ||
# define be64toh(x) ntohll(x) | ||
# define le64toh(x) (x) | ||
|
||
# elif BYTE_ORDER == BIG_ENDIAN | ||
|
||
/* that would be xbox 360 */ | ||
# define htobe16(x) (x) | ||
# define htole16(x) __builtin_bswap16(x) | ||
# define be16toh(x) (x) | ||
# define le16toh(x) __builtin_bswap16(x) | ||
|
||
# define htobe32(x) (x) | ||
# define htole32(x) __builtin_bswap32(x) | ||
# define be32toh(x) (x) | ||
# define le32toh(x) __builtin_bswap32(x) | ||
|
||
# define htobe64(x) (x) | ||
# define htole64(x) __builtin_bswap64(x) | ||
# define be64toh(x) (x) | ||
# define le64toh(x) __builtin_bswap64(x) | ||
|
||
# else | ||
|
||
# error byte order not supported | ||
|
||
# endif | ||
|
||
# define __BYTE_ORDER BYTE_ORDER | ||
# define __BIG_ENDIAN BIG_ENDIAN | ||
# define __LITTLE_ENDIAN LITTLE_ENDIAN | ||
# define __PDP_ENDIAN PDP_ENDIAN | ||
|
||
#else | ||
|
||
# error platform not supported | ||
|
||
#endif | ||
|
||
#endif // STARKWARE_CRYPTO_FFI_PORTABLE_ENDIAN_H_ |
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
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,7 +1,7 @@ | ||
add_executable(math_test math_test.cc) | ||
target_link_libraries(math_test gtest gtest_main pthread) | ||
target_link_libraries(math_test gtest gtest_main gmock pthread) | ||
add_test(math_test math_test) | ||
|
||
add_executable(prng_test prng_test.cc) | ||
target_link_libraries(prng_test gtest gtest_main pthread) | ||
target_link_libraries(prng_test gtest gtest_main gmock pthread) | ||
add_test(prng_test prng_test) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you make this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To copy both .so and .dylib (mac) shared libs