In this article, we will to create a native library so that our C driver can be used from Java. We will also create a jar that includes the library. We generate our outputs using Github Actions with the help of cross-compilation and even publish our jars there as packages!
compilation
A collection of 3 posts
FFMPEG Make fails to compile on Windows
Hey there, Today, I downloaded the latest version of ffmpeg and trid to compile it from scratch. Pretty soon, the console threw this error : Creating config.mak and config.h... /d/new-ffmpeg/mybuild/ffmpeg/library.mak:95: * missing separator. Stop.…
Find whether a Windows dll is compiled for 32 or 64 bits on Linux
This morning, I stumbled upon an unexpected problem; and found myself not knowing what to do. I had to compile the native part of a library on Linux, based on the existing Windows dlls. Before compiling, I needed to know…