notes/pl/cpp/compilers/mingw-w64/static-runtime.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

29 строки
945 B
Plaintext

<profile>
<id>mingw</id>
<activation>
<os><family>windows</family></os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
<configuration>
<properties>windows-x86_64-mingw</properties>
<compilerOptions>
<compilerOption>-static-libgcc</compilerOption>
<compilerOption>-static-libstdc++</compilerOption>
<compilerOption>-static</compilerOption>
<!-- compilerOption>-Wl,-Bstatic</compilerOption>
<compilerOption>-lstdc++</compilerOption>
<compilerOption>-lgcc</compilerOption>
<compilerOption>-lgcc_eh</compilerOption>
<compilerOption>-lpthread</compilerOption>
<compilerOption>-Wl,-Bdynamic</compilerOption -->
</compilerOptions>
</configuration>
</plugin>
</plugins>
</build>
</profile>