That's a linker error, meaning the missing symbol isn't
available to link into the executable. You need to compile the
source of all the libraries you use and make sure the resultant
binaries are available for the linker to link into the
executable.
The -I switch you've passed tells the compi
On Monday, 13 March 2023 at 05:05:27 UTC, Jeremy wrote:
Hello, I am new to this forum and to D.
I am trying to compile a basic D program with libraries
(`requests` which requires `cachetools` and `automem`) without
using dub. I have never used dub before, only a compiler.
The folders contain
Hello, I am new to this forum and to D.
I am trying to compile a basic D program with libraries
(`requests` which requires `cachetools` and `automem`) without
using dub. I have never used dub before, only a compiler.
The folders containing the libraries are in the same folder as
main.d, the