我将回答我自己的问题,为下一个打这个的人提供面包屑:
问题
在使用的flexmojos-maven-plugin期间,x86Linux Maven构建失败load-config+=...flex-config.xml -static-link-runtime-shared-libraries...
-metadata.language+=en_US
[INFO] Loading configuration file .../flex-config.xml
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 37064 bytes for Chunk::new
[ERROR] OutOfMemoryError -> [Help 1]
答案 0 :(得分:0)
<强>解决方案强>
增加系统交换。 flexmojos调用了flex编译器(一个本机可执行文件,需要在为JVM分配的内存之外的内存)。如果内存不足并且无法交换maven的jvm,则flex编译器会失败。
我添加了额外的交换,并且能够成功完成构建。
# create swap file
dd if=/dev/zero of=/opt/swapfile.1 bs=1M count=2048
# Set Permissions
chmod 600 /opt/swapfile.1
# Define as swap
mkswap /opt/swapfile.1
# Add to active swap
swapon /opt/swapfile.1
# Verify
free -m