> - local symbol `environ' in /usr/lib/crt0.o is referenced by DSO

Hmm, that's odd. `environ' is a common and not declared as static or
with any visibility attribute. Can you share the exact linking command
which has triggered this error?

> - Error: suffix or operands invalid for `mov'
> 
> these are all movl with %eax and two-character registers, e.g.
> movl    %fs, 8(%eax)
> movl    8(%eax), %fs

This is actually not a bug. Segment registers ([cdefg]s) are 16-bit
registers, so these should be used with `movw' instructions, not `movl'.
Older gas was probably silently converting these to movw.

> - www/chromium - OSError: [Errno 8] Exec format error

Please make the binary available to me offlist, as well as its linking
command (or build log, whatever suits you).

> - sysutils/gsmartcontrol - `.gnu.linkonce.t._Z11app_pcre_reRKSs' referenced 
> in section `.gnu.linkonce.r._Z11app_pcre_reRKSs' of gsc_main_window.o: 
> defined in discarded section `.gnu.linkonce.t._Z11app_pcre_reRKSs' of 
> gsc_main_window.o

Can you send me your build log for this as well?

Miod

Reply via email to