Hi, I've successfully installed meep libraries on my computer. I was trying out a couple of sample C++ programs that used meep library.. I used the recommended command for compiling the C++ program. g++ `pkg-config --cflags meep` foo.cpp -o foo `pkg-config --libs meep`
Unfortunately the compiled program always ended up with a segmentation fault.. The programs seem to run perfectly well when I change the command to the following. g++ -malign-double `pkg-config --cflags meep` foo.cpp -o foo `pkg-config --libs meep` I was wondering whether it is something that I should be bothered about.. Will it make the executable less memory efficient if I use the -malign-double flag? Or is there some other problems with using this flag? Thanks in advance.. Uday _______________________________________________ meep-discuss mailing list [email protected] http://ab-initio.mit.edu/cgi-bin/mailman/listinfo/meep-discuss

