RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-29 Thread William A. Hoffman
At 11:46 AM 6/29/2006, David Akdikmen wrote: >cc -V > >or as root "swlist -l product" and look for compiler (C-ANSI-C) in >output. > >I get > >ACXX C.05.50HP aC++ >... >C-ANSI-C C.05.50HP C/ANSI C Compiler >... trower 53: cc -V cc: HP aC++/ANSI C B391

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-29 Thread David Akdikmen
TED] Sent: Thursday, June 29, 2006 11:25 AM To: David Akdikmen; Brad King Cc: cmake@cmake.org Subject: RE: [CMake] Compile/install on HPUX on ia64 (Itanium) How can you tell what version it is? At 11:16 AM 6/29/2006, David Akdikmen wrote: >Hi, > >What version of the compiler you got? I

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-29 Thread William A. Hoffman
>CMakeFiles/cmTryCompi >>leExec.dir/build >>Building C object CMakeFiles/cmTryCompileExec.dir/src.o >>/usr/bin/cc +p -Aa -Ae -o >>CMakeFiles/cmTryCompileExec.dir/src.o >>-c /home/khoros/cmake-2.4.2/CMakeFiles/CMakeTmp/src.c >>Error 690: "/home/khoros/cmake-2.4.2/CMakeFile

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-29 Thread David Akdikmen
ys it detected support for the new style IO streams? -David -Original Message- From: William A. Hoffman [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 28, 2006 5:05 PM To: David Akdikmen; Brad King Cc: cmake@cmake.org Subject: RE: [CMake] Compile/install on HPUX on ia64 (Itanium) My HP do

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-28 Thread William A. Hoffman
file was: >#include >#include >#include >#include > >int main() { int x __attribute__((__unused__)) ; return 0; } >APPEND-- > >-Original Message- >From: Brad King [mailto:[EMAIL PROTECTED] >Sen

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-28 Thread David Akdikmen
^ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Akdikmen Sent: Wednesday, June 28, 2006 4:37 PM To: Brad King Cc: cmake@cmake.org; William A. Hoffman Subject: RE: [CMake] Compile/install on HPUX on ia64 (Itanium) Odd, I'm not sure

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-28 Thread David Akdikmen
#include #include int main() { int x __attribute__((__unused__)) ; return 0; } APPEND-- -Original Message- From: Brad King [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 28, 2006 3:19 PM To: David Akdikmen Cc: cmake@cmake.org

Re: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-28 Thread Brad King
David Akdikmen wrote: Success with latest from CVS!!! Both make and make install seems to work, Thanks, Great. I added the option by setting the environment variables before running configure. (At the bash prompt before running configure) export CFLAGS="+p" export CXXFLAGS="+p" What was t

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-28 Thread David Akdikmen
g the +p option, the compiler will not compile code containing anachronistic constructs. -David A. -Original Message- From: Brad King [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 28, 2006 1:36 PM To: David Akdikmen Cc: William A. Hoffman; cmake@cmake.org Subject: Re: [CMake

Re: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-28 Thread Brad King
David Akdikmen wrote: I looked at the CMakeOutput.log as Brad suggested and saw the error message, it suggests putting the "+p" as an option. That got me past that error, now I am getting: Where did you add the "+p" option? We may need to add it to CMake so you don't need to add it by hand

RE: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-28 Thread David Akdikmen
From: William A. Hoffman [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 10:14 AM To: David Akdikmen; cmake@cmake.org Subject: Re: [CMake] Compile/install on HPUX on ia64 (Itanium) I just tried on this machine: trower 130: uname -a HP-UX trower B.11.23 U ia64 2948882498 unlimited-user lic

Re: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-27 Thread William A. Hoffman
I just tried on this machine: trower 130: uname -a HP-UX trower B.11.23 U ia64 2948882498 unlimited-user license It has aCC and cc. I had a small problem with curses, and just checked in a fix. Are you setting any flags? -Bill At 06:56 PM 6/26/2006, David Akdikmen wrote: >Hi, > >I am tryin

Re: [CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-27 Thread Brad King
David Akdikmen wrote: First problem is that ATTR_UNUSED is being expanded to __attribute__(..) which is a GNU compiler feature. Looks like the TRY_COMPILE_FROM_SOURCE("int x __attribute__((__unused__))" In Utilities/cmxmlrpc/CMakeLists.txt is succeeding when it should not. Look for a file

[CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-26 Thread David Akdikmen
Hi, I am trying to get cmake to build with the aC++ compiler on Itanium version of HP-UX. I got the source, cmake-2.4.2, and ran ./configure (which runs ./bootstrap). So far it is outputting many errors when doing the "make". Looks like either the compiler is not complaining about missing featu