mirror of
https://github.com/openharmony/ark_js_runtime.git
synced 2026-08-27 02:31:17 -04:00
733093439a
desc: stub.m binary file compiled into shared library solu: 1. ark_stub_compiler executable not depend libark_jsruntime.so and libark_jsoptimizer.so, but depend libark_jsruntime_set and libark_jsoptimizer_set 2. python shell read stub.m binary data, and save to extern array of stub_m.cpp; 3. file_loader.cpp read stub data from array of stub_m.cpp. issue: https://gitee.com/openharmony/ark_js_runtime/issues/I5E4LW Signed-off-by: wanghuan <wanghuan80@huawei.com> Change-Id: I9c95c882b59438370523179dd5949aeca51faa10
17 lines
729 B
C++
17 lines
729 B
C++
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#include <cstdint>
|
|
extern const uint8_t _binary_stub_m_start[1] = {0x0};
|
|
extern const uint32_t _binary_stub_m_length = 1; |