ACC

사내 HP-UX 서버에서 컴파일을 하다, 아래의 Warning 이 나왔다. Warning (suggestion) 887: “SharedMemory.cpp”, line 711 # Type ‘int’ is smaller than type ‘unsigned long’, unwanted widening in value may result.        memset(szTotalHexData, 0x00, (iSize * 3) + 1);                                      ^^^^^^^^^^^^^^   이유인즉, unsigned long type 이 와야 하는데, int type 이 왔다는 것. 이상할 것이 없어서 memset […]

Continue reading about size_t warning. int’ is smaller than type ‘unsigned long

HP 장비에서 aCC 로 컴파일을 하던도중 아래의 에러가 발생했다. “/opt/aCC/include_std/utility”, line 99: error #2070: incomplete type is not allowed first_type  first; ^ detected during: instantiation of class “std::pair<_TypeT, _TypeU> [with _TypeT=const std::string, _TypeU=char *]” at line 97 of “/opt/aCC/include_std/rw/tree” instantiation of class “__rw::__rw_rb_tree_node<_Alloc, _Val, _Key, _KeyOf> [with _Alloc=std::allocator<std::pair<const std::string, char *>>, _Val=std::pair<const std::string, char *>, […]

Continue reading about “/opt/aCC/include_std/utility”, line 99: error #2070: incomplete type is not allowed

pchero on February 23rd, 2011

Unix 는 장비도 다양하고,  버전도 다양하다. HP UX에 관련한 Hardware/OS support 에 관한 리스트는 아래의 링크에서 찾을 수 있다. http://www.hp.com/go/hpuxservermatrix 그리고 다른 HP UX 에 관한 CPU/OS support에 관한 내용은 아래의 링크에서 찾을 수 있다. http://search.cpan.org/~rjbs/perl-5.12.3/README.hpux

Continue reading about HP-UX Hardwar/OS support & CPU/OS support