Question: Is it possible to compile a program in Linux using a DLL file?
Where this happens: This .dll will be used to write a php extension for some third party proprietary software.
Background and study:
I was provided with a library called proprietary.lib . I was curious as I had never seen the .lib extension .lib , so I typed:
file proprietary.lib
The output was:
proprietary.lib: current ar archive
I did some research and found that ar greater or less than tar (and in fact, I think tar has since replaced ar in most * nix environments).
When checking the ar man page, I saw the t option , which displays a list of the contents of the contents of this archive. Cool. Therefore, I type:
ar t proprietary.lib
And we get:
proprietary.dll proprietary.dll ... (snip X lines) ...
gcc linux dll ar
random_hero
source share