aix
vivianke
这个作者很懒,什么都没留下…
展开
-
AIX 编译和调试cpp命令
代码:#include int main(){ int a = 0x414243; printf("%d\n", 1); return 0;}to compile and link:xlC_r -g -o test test.cppto debug:dbx ./test Type 'help原创 2011-12-28 09:19:57 · 708 阅读 · 0 评论 -
大小端内存查看
代码:#include int main(){ int a = 0x414243; printf("0x%x\n", a); return 0;}大端示例:平台:AIX aix 3 5 00C97AC04C00 powerpc unknown AIXBreakpoint 1, main () at test-endian.cpp:55原创 2011-12-27 08:29:20 · 693 阅读 · 0 评论