Skip to content

Commit

Permalink
Disable rpmalloc for riscv64
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed May 26, 2023
1 parent c2dc353 commit f206273
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion config/build-bindings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ This script is included in /config/build-definitions.xml.
<isset property="build.arch.arm"/>
</and>
</condition>
<property name="binding.rpmalloc" value="true"/>
<condition property="binding.rpmalloc" value="true" else="false">
<or>
<isset property="build.arch.x86_family"/>
<isset property="build.arch.arm"/>
</or>
</condition>
<property name="binding.shaderc" value="true"/>
<property name="binding.spvc" value="true"/>
<condition property="binding.sse" value="true" else="false"><isset property="build.arch.x86_family"/></condition>
Expand Down

0 comments on commit f206273

Please sign in to comment.