i know it is possible to compile a program with -64 option with the CC compiler:
CC -o p p.cpp -64 -O
this option makes the pointers to be 64 bits long,
not 32 bit long.
i have the c++ compiler under unix and as far as i tried the c++ compiler didnt recognized this option. (i get - -c++: unrecognized option `-64')
does someone knows of a way to make the option valid under the c++ compiler?
thanks!
CC -o p p.cpp -64 -O
this option makes the pointers to be 64 bits long,
not 32 bit long.
i have the c++ compiler under unix and as far as i tried the c++ compiler didnt recognized this option. (i get - -c++: unrecognized option `-64')
does someone knows of a way to make the option valid under the c++ compiler?
thanks!