Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openj9
Path: blob/master/runtime/gc/module.xml
5985 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
Copyright (c) 2006, 2019 IBM Corp. and others
4
5
This program and the accompanying materials are made available under
6
the terms of the Eclipse Public License 2.0 which accompanies this
7
distribution and is available at https://www.eclipse.org/legal/epl-2.0/
8
or the Apache License, Version 2.0 which accompanies this distribution and
9
is available at https://www.apache.org/licenses/LICENSE-2.0.
10
11
This Source Code may also be made available under the following
12
Secondary Licenses when the conditions for such availability set
13
forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
14
General Public License, version 2 with the GNU Classpath
15
Exception [1] and GNU General Public License, version 2 with the
16
OpenJDK Assembly Exception [2].
17
18
[1] https://www.gnu.org/software/classpath/license.html
19
[2] http://openjdk.java.net/legal/assembly-exception.html
20
21
SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
22
-->
23
<module>
24
25
<exports group="all">
26
<export name="JVM_OnLoad"/>
27
<export name="J9VMDllMain"/>
28
</exports>
29
30
<artifact type="shared" name="j9gc" bundle="j9vmall" loadgroup="">
31
<include-if condition="spec.flags.module_gc"/>
32
<options>
33
<option name="isRequired"/>
34
<option name="requiresPrimitiveTable"/>
35
<option name="prototypeHeaderFileNames" data="j9protos.h"/>
36
<option name="isCPlusPlus"/>
37
<option name="dllDescription" data="GC"/>
38
</options>
39
<phase>core quick j2se</phase>
40
<dependencies>
41
<!-- This dependency ensures that the DDR library gets compiled. -->
42
<dependency name="j9gcddr">
43
<include-if condition="spec.flags.module_ddr"/>
44
<exclude-if condition="spec.flags.opt_useOmrDdr"/>
45
</dependency>
46
</dependencies>
47
<exports>
48
<group name="all"/>
49
</exports>
50
<flags>
51
<flag name="/w34189" asmflag="false" definition="false">
52
<include-if condition="spec.win_x86[^-]*"/>
53
</flag>
54
</flags>
55
<includes>
56
<include path="j9include"/>
57
<include path="j9oti"/>
58
<include path="j9gcbase"/>
59
<include path="$(OMR_DIR)/gc/base" type="relativepath"/>
60
<include path="j9gcstructs"/>
61
<include path="$(OMR_DIR)/gc/structs" type="relativepath"/>
62
<include path="j9gcstats"/>
63
<include path="$(OMR_DIR)/gc/stats" type="relativepath"/>
64
<include path="j9gcinclude"/>
65
<include path="$(OMR_DIR)/gc/include" type="relativepath"/>
66
<include path="j9modronstartup"/>
67
<include path="$(OMR_DIR)/gc/startup" type="relativepath"/>
68
</includes>
69
<makefilestubs>
70
<makefilestub data="UMA_ENABLE_ALL_WARNINGS=1"/>
71
<makefilestub data="UMA_TREAT_WARNINGS_AS_ERRORS=1"/>
72
</makefilestubs>
73
<libraries>
74
<library name="j9util"/>
75
<library name="j9utilcore"/>
76
<library name="j9avl" type="external"/>
77
<library name="j9hashtable" type="external"/>
78
<library name="j9thr"/>
79
<library name="j9stackmap"/>
80
<library name="j9pool" type="external"/>
81
<library name="j9hookable"/>
82
<library name="j9gcbase"/>
83
<library name="omrgcbase" type="external"/>
84
<library name="j9gcstructs"/>
85
<library name="omrgcstructs" type="external"/>
86
<library name="j9gcstats"/>
87
<library name="omrgcstats" type="external"/>
88
<library name="j9gcapi"/>
89
<library name="omrglue" type="external"/>
90
<library name="j9modronstartup"/>
91
<library name="omrgcstartup" type="external"/>
92
<library name="j9gctrc">
93
<include-if condition="spec.flags.J9VM_GC_MODRON_TRACE"/>
94
</library>
95
<library name="j9gctrcstandard">
96
<include-if condition="spec.flags.J9VM_GC_MODRON_TRACE and spec.flags.J9VM_GC_MODRON_STANDARD"/>
97
</library>
98
<library name="j9gctrcvlhgc">
99
<include-if condition="spec.flags.J9VM_GC_MODRON_TRACE and spec.flags.J9VM_GC_VLHGC"/>
100
</library>
101
<library name="j9modronstandard">
102
<include-if condition="spec.flags.J9VM_GC_MODRON_STANDARD"/>
103
</library>
104
<library name="omrgcstandard" type="external">
105
<include-if condition="spec.flags.J9VM_GC_MODRON_STANDARD"/>
106
</library>
107
<library name="j9realtime">
108
<include-if condition="spec.flags.J9VM_GC_REALTIME"/>
109
</library>
110
<library name="winmm.lib" type="system">
111
<include-if condition="spec.flags.J9VM_GC_REALTIME and spec.win_.*"/>
112
</library>
113
<library name="j9gcvlhgc">
114
<include-if condition="spec.flags.J9VM_GC_VLHGC"/>
115
</library>
116
</libraries>
117
</artifact>
118
119
</module>
120
121