Bruno N. L. Faria writes:
> make[1]: Leaving directory `/sources/cvs/wine/miscemu'
> gcc -o wine miscemu/miscemu.o -L./dlls -lntdll -L./library -lwine
-L./unicode
> -lwine_unicode -lm
> ./dlls/libntdll.so: undefined reference to `__builtin_expect'
> collect2: ld returned 1 exit status
> make: *** [wine] Error 1
> alphax@alphax:/sources/cvs/wine$
>
>
>
> any tips?
> thanks
>
> _______________________________________________
> wine-users mailing list
> wine-users@winehq.com
> http://www.winehq.com/mailman/listinfo/wine-users
Hello, the link loader (ld) cannot resolve a reference to: __builtin_expect
as found in the shared object (.so) library libntdll.so. The object
referenced: __builtin_expect is a kernel or system level object
distinguished by the leading double underscores: "__". Try to use the
nm
utility to list the objects in libntdll.so. Hope this helps, David.