
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.cpp to debug: dbx ./test Type 'help原创 2011-12-28 09:19:57 · 717 阅读 · 0 评论 -
大小端内存查看
代码: #include int main() { int a = 0x414243; printf("0x%x\n", a); return 0; }大端示例: 平台:AIX aix 3 5 00C97AC04C00 powerpc unknown AIX Breakpoint 1, main () at test-endian.cpp:5 5原创 2011-12-27 08:29:20 · 710 阅读 · 0 评论