- 论坛徽章:
- 0
|
操作系统 linux 2.4.20-18.7smp #1 SMP
gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-110)
GNU gdb Red Hat Linux (5.1.90CVS-5)
我的一个程序 i_pol,无法运行,错误信息如下:
- [ics@cq_ips_db bin]$ ./i_pol
- Illegal instruction (core dumped)
- [ics@cq_ips_db bin]$ gdb i_pol
- GNU gdb Red Hat Linux (5.1.90CVS-5)
- Copyright 2002 Free Software Foundation, Inc.
- GDB is free software, covered by the GNU General Public License, and you are
- welcome to change it and/or distribute copies of it under certain conditions.
- Type "show copying" to see the conditions.
- There is absolutely no warranty for GDB. Type "show warranty" for details.
- This GDB was configured as "i386-redhat-linux"...(no debugging symbols found)...
- (gdb) r
- Starting program: /home/ics/bin/i_pol
- (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...
- (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...
- Program received signal SIGILL, Illegal instruction.
- 0x08144384 in _IO_stdin_used ()
- (gdb)
复制代码
我将程序进行精简,直到main()函数里只剩下:
- int main( int argc,char **argv )
- {
- char szCfgFile[40];
- char szIpFile[40];
- printf("dasdfads \n");
- if ( argc < 3)
- {
- fprintf( stderr, "Copyright 2003 bash Corporation. All rights reserved.\n" );
- fprintf( stderr, "Usage: i_pol [config_file_full_path] [ip_cfg]\n\n" );
- strcpy(szCfgFile,"../cfg/i_pol.cfg");
- strcpy(szIpFile,"../cfg/i_pol_ip.cfg");
- }
- else
- {
- strcpy(szCfgFile,argv[1]);
- strcpy(szIpFile,argv[2]);
- }
- printf(" 2 \n");
- #if 0
- pol_init(szCfgFile,szIpFile);
- #endif
- fprintf( stderr," \nNow server are working now ...... \n" );
- while( 1 )
- {
- pause();
- if( errno==EINTR )
- continue;
- }
- }
- /* end of main(int argc,char **argv)*/
复制代码
运行结果还是一样,连 dasdfads 都没有打印出来!
请指点! |
|