Compilation on Fedora 10 x86_64

Has anyone been successful in building an running occ6.3 on FC10 64 bit. I could build Opencascade successfully but my application crashes even before starting. Same works well on Ubuntu 32 bit.

Mark's picture

The first thing to do when you have a crash is to run the program with gdb: $ gdb myprogname
When gdb loads, press 'r' and hit enter. When the program crashes, type 'bt' and hit enter.

Also, are you compiling your app with -D_OCC64 and -m64?

Sharjith Naramparambath's picture

Thanks, it worked