[email protected] said:
> As for the way of detection, I just did not want to make condition if x86
> then we have rdtsc - one newer know:)
Given that OpenPGM is officially not supported by the vendor on anything
other than x86 or AMD64, I think there's no point in checking specifically
for RDTSC.
Therefore, I'd like to add the following to configure.in if the user has
specified --with-pgm:
case "${host_cpu}" in
i*86|x86_64)
;; # (Supported, OK)
*)
AC_MSG_ERROR([The PGM extension is not supported on the ${host_cpu}
platform.])
;;
esac
Distribution packagers would then make sure that --with-pgm is not used on
non-X86 platforms.
Would this solve our problem?
-mato
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev