1 Star 0 Fork 11

douyiwang/openjfx8_patch

forked from src-openEuler/openjfx8 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
fxpackager-so.xml 1.89 KB
一键复制 编辑 原始数据 按行查看 历史
Noah 提交于 2020-06-01 17:37 . initial packaging
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>libpackager</name>
<packaging>so</packaging>
<artifactId>libpackager</artifactId>
<groupId>org.openjfx</groupId>
<version>@RELEASE_VERSION@</version>
<properties>
<commonCompilerOptions>-fstack-protector -fPIC -std=gnu++98 -ffunction-sections -fdata-sections -DJAVAARCH="amd64"</commonCompilerOptions>
<native.source.dir>../src/main/native/library/common/</native.source.dir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>native-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<compilerStartOptions>
<compilerStartOption>${commonCompilerOptions}</compilerStartOption>
</compilerStartOptions>
<sources>
<source>
<directory>${native.source.dir}</directory>
<includes>
<include>**/*.cpp</include>
</includes>
</source>
<source>
<directory>${JAVA_HOME}/include</directory>
</source>
<source>
<directory>${JAVA_HOME}/include/linux</directory>
</source>
</sources>
<linkerStartOptions>
<linkerStartOption>-lpthread</linkerStartOption>
<linkerStartOption>-shared</linkerStartOption>
<linkerStartOption>-static-libgcc</linkerStartOption>
<linkerStartOption>-lstdc++</linkerStartOption>
<linkerStartOption>-static-libstdc++</linkerStartOption>
<linkerStartOption>-Wl,--gc-sections</linkerStartOption>
<linkerStartOption>-z</linkerStartOption>
<linkerStartOption>relro</linkerStartOption>
<linkerStartOption>-ldl</linkerStartOption>
</linkerStartOptions>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/douyiwang/openjfx8_patch.git
git@gitee.com:douyiwang/openjfx8_patch.git
douyiwang
openjfx8_patch
openjfx8_patch
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385