FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
daScript/src/misc/aot_stub.cpp at master · WhyNot135/daScript · GitHub
WhyNot135
/
daScript
Public
forked from
GaijinEntertainment/daScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
daScript
/
src
/
misc
/
aot_stub.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
47 lines (42 loc) · 1.73 KB
Breadcrumbs
daScript
/
src
/
misc
/
aot_stub.cpp
Copy path
File metadata and controls
47 lines (42 loc) · 1.73 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
include
"
daScript/misc/platform.h
"
#
include
"
daScript/simulate/aot_library.h
"
/*
DAS_AOT_LIB("daslib/functional.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/json.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/json_boost.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/regex.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/regex_boost.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/strings_boost.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/random.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/math_boost.das" AOT_GENERATED_SRC dasAotStub daScript)
DAS_AOT_LIB("daslib/utf8_utils.das" AOT_GENERATED_SRC dasAotStub daScript)
*/
namespace
das
{
extern
AotListBase impl_aot_functional;
extern
AotListBase impl_aot_json;
extern
AotListBase impl_aot_json_boost;
extern
AotListBase impl_aot_regex;
extern
AotListBase impl_aot_regex_boost;
extern
AotListBase impl_aot_strings_boost;
extern
AotListBase impl_aot_random;
extern
AotListBase impl_aot_math_boost;
extern
AotListBase impl_aot_utf8_utils;
extern
AotListBase impl_aot_templates_boost;
extern
AotListBase impl_aot_ast_boost;
DAS_MOD_API
vector<
void
*>
force_aot_stub
() {
vector<
void
*> stubs = {
&impl_aot_functional,
&impl_aot_json,
&impl_aot_json_boost,
&impl_aot_regex,
&impl_aot_regex_boost,
&impl_aot_strings_boost,
&impl_aot_random,
&impl_aot_math_boost,
&impl_aot_utf8_utils,
&impl_aot_templates_boost,
&impl_aot_ast_boost,
};
return
stubs;
}
}
Back
|
FazBrowse Home
|
New Git URL