Path: blob/master/runtime/codert_vm/module.xml
5986 views
<?xml version="1.0" encoding="UTF-8"?>1<!--2Copyright (c) 2006, 2021 IBM Corp. and others34This program and the accompanying materials are made available under5the terms of the Eclipse Public License 2.0 which accompanies this6distribution and is available at https://www.eclipse.org/legal/epl-2.0/7or the Apache License, Version 2.0 which accompanies this distribution and8is available at https://www.apache.org/licenses/LICENSE-2.0.910This Source Code may also be made available under the following11Secondary Licenses when the conditions for such availability set12forth in the Eclipse Public License, v. 2.0 are satisfied: GNU13General Public License, version 2 with the GNU Classpath14Exception [1] and GNU General Public License, version 2 with the15OpenJDK Assembly Exception [2].1617[1] https://www.gnu.org/software/classpath/license.html18[2] http://openjdk.java.net/legal/assembly-exception.html1920SPDX-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-exception21-->22<module>23<artifact type="static" name="j9codert_vm">24<include-if condition="spec.flags.module_codert_vm" />25<exclude-if condition="spec.linux_riscv.*" />26<phase>core</phase>27<flags>28<flag name="$(TR_HOST)"/>29<flag name="TR_64Bit">30<include-if condition="spec.flags.J9VM_ENV_DATA64"/>31</flag>32<flag name="TR_HOST_64BIT">33<include-if condition="spec.flags.J9VM_ENV_DATA64"/>34</flag>35<flag name="TR_TARGET_64BIT">36<include-if condition="spec.flags.J9VM_ENV_DATA64"/>37</flag>38<flag name="TR_TARGET_32BIT">39<exclude-if condition="spec.flags.J9VM_ENV_DATA64"/>40</flag>41<flag name="TR_HOST_32BIT">42<exclude-if condition="spec.flags.J9VM_ENV_DATA64"/>43</flag>44<flag name="TR_TARGET_X86">45<include-if condition="spec.flags.module_jit_ia32"/>46</flag>47<flag name="TR_TARGET_POWER">48<include-if condition="spec.flags.module_jit_ppc"/>49</flag>50<flag name="TR_TARGET_S390">51<include-if condition="spec.flags.module_jit_s390"/>52</flag>53</flags>5455<includes>56<include path="j9include"/>57<include path="j9oti"/>58<include path="j9util"/>59<include path="j9gcinclude"/>60<include path="$(OMR_DIR)/gc/include" type="relativepath"/>6162<include path="../compiler/runtime" type="relativepath"/>63</includes>6465<makefilestubs>66<makefilestub data="UMA_TREAT_WARNINGS_AS_ERRORS=1"/>67<makefilestub data="UMA_OBJECTS:=$(filter-out runtimeInstrumentation%,$(UMA_OBJECTS))">68<exclude-if condition="spec.flags.J9VM_JIT_RUNTIME_INSTRUMENTATION"/>69</makefilestub>70<makefilestub data="UMA_OBJECTS:=$(filter-out xnathelp%,$(UMA_OBJECTS))">71<exclude-if condition="spec.flags.arch_x86"/>72</makefilestub>73<makefilestub data="UMA_OBJECTS:=$(filter-out pnathelp%,$(UMA_OBJECTS))">74<exclude-if condition="spec.flags.arch_power"/>75</makefilestub>76<makefilestub data="UMA_OBJECTS:=$(filter-out armnathelp%,$(UMA_OBJECTS))">77<exclude-if condition="spec.flags.arch_arm"/>78</makefilestub>79<makefilestub data="UMA_OBJECTS:=$(filter-out arm64nathelp%,$(UMA_OBJECTS))">80<exclude-if condition="spec.flags.arch_aarch64"/>81</makefilestub>82<makefilestub data="UMA_OBJECTS:=$(filter-out znathelp%,$(UMA_OBJECTS))">83<exclude-if condition="spec.flags.arch_s390"/>84</makefilestub>85<makefilestub data="UMA_OBJECTS:=$(filter-out riscvnathelp%,$(UMA_OBJECTS))">86<exclude-if condition="spec.flags.arch_riscv and spec.flags.J9VM_ENV_DATA64"/>87</makefilestub>88</makefilestubs>89</artifact>90</module>919293