when you see errors like this:
"
/usr/bin/ld: build/dns-sd: hidden symbol `__stack_chk_fail_local'
in /usr/lib/libc_nonshared.a(stack_chk_fail_local.oS) is referenced by DSO
/usr/bin/ld: final link failed: Nonrepresentable section on output
"
you will do like this:
"
Edit Makefile, and find line xx:
LD = ld -shared
and change it to:
LD = gcc -shared
"
Now when you build, everything works.
"
/usr/bin/ld: build/dns-sd: hidden symbol `__stack_chk_fail_local'
in /usr/lib/libc_nonshared.a(stack_chk_fail_local.oS) is referenced by DSO
/usr/bin/ld: final link failed: Nonrepresentable section on output
"
you will do like this:
"
Edit Makefile, and find line xx:
LD = ld -shared
and change it to:
LD = gcc -shared
"
Now when you build, everything works.