-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from carlopi/enableduckdbwasm
Enable CI to compile for duckdb-wasm
- Loading branch information
Showing
17 changed files
with
458 additions
and
53 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
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
Empty file.
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,17 @@ | ||
--- /ConfigureChecks.cmake 2023-11-28 16:13:15 | ||
+++ /ConfigureChecks.cmake 2023-11-28 15:58:45 | ||
@@ -37,13 +37,7 @@ | ||
#/* Define to 1 if you have the ANSI C header files. */ | ||
check_include_files("stdlib.h;stdarg.h;string.h;float.h" STDC_HEADERS) | ||
|
||
-test_big_endian(WORDS_BIGENDIAN) | ||
-#/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ | ||
-if(WORDS_BIGENDIAN) | ||
- set(BYTEORDER 4321) | ||
-else(WORDS_BIGENDIAN) | ||
- set(BYTEORDER 1234) | ||
-endif(WORDS_BIGENDIAN) | ||
+set(BYTEORDER 1234) | ||
|
||
if(HAVE_SYS_TYPES_H) | ||
check_symbol_exists("off_t" "sys/types.h" OFF_T) |
Empty file.
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,12 @@ | ||
--- /cmake/helpers/configure.cmake 2023-12-04 11:26:04 | ||
+++ /cmake/helpers/configure.cmake 2023-12-04 11:27:03 | ||
@@ -72,7 +72,8 @@ | ||
|
||
else () | ||
# linux, mac and mingw/windows | ||
- test_big_endian(WORDS_BIGENDIAN) | ||
+ set(WORDS_BIGENDIAN FALSE) | ||
+ # test_big_endian(WORDS_BIGENDIAN) | ||
if (MINGW) | ||
set(THREADS_PREFER_PTHREAD_FLAG ON) | ||
endif () |
Empty file.
Oops, something went wrong.