You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LDC - the LLVM D compiler
I'm running Linux with both static and dynamic versions of PCRE
installed. However I can only link against the dynamic version of the
libraries. How do I tell LDC to link with the static versions?
For example, in GCC I can force static with "-static":
gcc -o main -g -Wall -Werror main.c -static -lpcre
On LDC I can only try this:
ldc -g -w main.d -L="-static -lpcre"