[Bug 1272] Unable to make OpenSSH with undefined refs in readconf.o

bugzilla-daemon at mindrot.org bugzilla-daemon at mindrot.org
Mon Jan 22 13:29:08 EST 2007


http://bugzilla.mindrot.org/show_bug.cgi?id=1272





------- Comment #6 from djm at mindrot.org  2007-01-22 13:29 -------
It really does look like your gcc install is broken: it seems to be
missing the internal functions necessary for 64-bit math, and possibly
other things to. Can you try to compile and execute the following test
program?

----

#include <stdio.h>
int main(void)
{
        u_int64_t a = 32, b = 3, c;
        c = a / b;
        printf("%llu\n", c);
        return 0;
}




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


More information about the openssh-bugs mailing list