On 28/09/13 19:19, "Juan J. Martínez" wrote: > [...] >> >>> I like searching in current >>> script dir and lib directories (lib/x86 and lib/x64 doesn't make sense >>> because... ARM etc hehe). >>> >> >> How about "lib/" + platform.machine() ? >> > > Fair enough. I can do that!
Eh, not really... I get i686 here and that's not what we are looking for :D See what I was doing for the "bits" in my original code: bits = "64bit" if sys.maxsize > 2**32 else "32bit" ...but it is because I was assuming Intel/AMD only. I think we may have to go with the "lib" version only. After all it doesn't make sense to distribute a single package for Linux, Mac, Windows x n-architectures. Regards, Juan -- jjm's home: http://www.usebox.net/jjm/ blackshell: http://blackshell.usebox.net/ -- You received this message because you are subscribed to the Google Groups "pyglet-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyglet-users. For more options, visit https://groups.google.com/groups/opt_out.
