-
Notifications
You must be signed in to change notification settings - Fork 9
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
Update prebuilds #50
Update prebuilds #50
Changes from 1 commit
940a6f9
8ffdb9c
39d83fc
a9d7d3d
06e4a5e
2f2553d
4fb5c3a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ mirror_drive( | |
SOURCE qogbhqbcxknrpeotyz7hk4x3mxuf6d9mhb1dxm6ms5sdn6hh1uso | ||
DESTINATION ${PROJECT_SOURCE_DIR}/prebuilds | ||
PREFIX /${target} | ||
CHECKOUT 282 | ||
CHECKOUT 288 | ||
) | ||
|
||
if(target MATCHES "win32") | ||
|
@@ -130,8 +130,8 @@ if(NOT TARGET js) | |
endif() | ||
|
||
fetch_package("github:libuv/[email protected]") | ||
fetch_package("github:holepunchto/libutf#c4b7b15") | ||
fetch_package("github:holepunchto/libjs#41e480f") | ||
fetch_package("github:holepunchto/libutf#9509b28") | ||
fetch_package("github:holepunchto/libjs#35e7566") | ||
fetch_package("github:holepunchto/libnapi#324c25c") | ||
|
||
add_bare_bundle( | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,10 @@ EXPORTS | |
js_create_error | ||
js_create_external | ||
js_create_external_arraybuffer | ||
js_create_external_string_latin1 | ||
js_create_external_string_utf16le | ||
js_create_external_string_utf8 | ||
js_create_function | ||
js_create_function_with_ffi | ||
js_create_function_with_source | ||
js_create_inspector | ||
js_create_int32 | ||
|
@@ -42,6 +44,9 @@ EXPORTS | |
js_create_object | ||
js_create_platform | ||
js_create_promise | ||
js_create_property_key_latin1 | ||
js_create_property_key_utf16le | ||
js_create_property_key_utf8 | ||
js_create_range_error | ||
js_create_reference | ||
js_create_sharedarraybuffer | ||
|
@@ -54,6 +59,7 @@ EXPORTS | |
js_create_synthetic_module | ||
js_create_threadsafe_function | ||
js_create_type_error | ||
js_create_typed_function | ||
js_create_typedarray | ||
js_create_uint32 | ||
js_create_unsafe_arraybuffer | ||
|
@@ -75,9 +81,6 @@ EXPORTS | |
js_escape_handle | ||
js_exit_context | ||
js_fatal_exception | ||
js_ffi_create_function | ||
js_ffi_create_function_info | ||
js_ffi_create_type_info | ||
Comment on lines
-78
to
-80
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The experimental FFI API is now removed. |
||
js_finish_deferred_teardown_callback | ||
js_get_and_clear_last_exception | ||
js_get_array_length | ||
|
@@ -87,6 +90,7 @@ EXPORTS | |
js_get_boolean | ||
js_get_callback_info | ||
js_get_dataview_info | ||
js_get_dataview_view | ||
js_get_element | ||
js_get_env_loop | ||
js_get_env_platform | ||
|
@@ -108,8 +112,11 @@ EXPORTS | |
js_get_reference_value | ||
js_get_sharedarraybuffer_backing_store | ||
js_get_sharedarraybuffer_info | ||
js_get_string_view | ||
js_get_threadsafe_function_context | ||
js_get_typed_callback_info | ||
js_get_typedarray_info | ||
js_get_typedarray_view | ||
js_get_undefined | ||
js_get_value_bigint_int64 | ||
js_get_value_bigint_uint64 | ||
|
@@ -191,20 +198,23 @@ EXPORTS | |
js_reference_unref | ||
js_reject_deferred | ||
js_release_arraybuffer_backing_store | ||
js_release_dataview_view | ||
js_release_string_view | ||
js_release_threadsafe_function | ||
js_release_typedarray_view | ||
js_remove_teardown_callback | ||
js_remove_wrap | ||
js_request_garbage_collection | ||
js_resolve_deferred | ||
js_run_module | ||
js_run_script | ||
js_send_inspector_request | ||
js_set_arraybuffer_zero_fill_enabled | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was an internal function previously used by |
||
js_set_element | ||
js_set_module_export | ||
js_set_named_property | ||
js_set_property | ||
js_strict_equals | ||
js_symbol_for | ||
js_terminate_execution | ||
js_throw | ||
js_throw_error | ||
|
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.
Ditto on #50 (comment).