Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos
we always try to make the code warning free as a good coding practice, but I think with the newest version of gcc there are new things that generate warning that didn't used to, so yes you can turn the checking off safely.
cheers Bruce
On Mon, 7 Nov 2011, Panagiotis Foteinos wrote:
Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos _______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
which compiler version and OS platform are you using? and which checkout of the 'dev' trunk? dev or stable? currently the 'dev' trunk should build without warnings under gcc v4.4.5 (on Centos 6, kernel 2.6.32-131). but you can deactivate the -Werror switch to get things built on your system.
n.
On Mon, 2011-11-07 at 11:16 -0500, Panagiotis Foteinos wrote:
Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos _______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
Thank you all for the replies.
I am using Ubuntu (kernel-2.6.32-35) and gcc-4.4.3. I downloaded the stable version. So, I guess it is fine to ignore the warnings.
Best Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 12:24 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
which compiler version and OS platform are you using? and which checkout of the 'dev' trunk? dev or stable? currently the 'dev' trunk should build without warnings under gcc v4.4.5 (on Centos 6, kernel 2.6.32-131). but you can deactivate the -Werror switch to get things built on your system.
n.
On Mon, 2011-11-07 at 11:16 -0500, Panagiotis Foteinos wrote:
Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos _______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.
Hello list.
So, while making the build directory, I got the following output:
************************************************************************************************* Making all in gpu_utils make[2]: Entering directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' /bin/bash ../libtool --tag=CXX --mode=link g++ -rdynamic -ldl -L/usr/lib64 -L/usr/X11R6/lib64 -o cudadetect cudadetect-cudadetect.o -lz -lm -lcrypt -ldl -lpthread -lnetcdf -lvolume_io -lminc -lvnl_algo -lvnl -lvcl -lnetlib -lv3p_netlib ../libtool: line 454: CDPATH: command not found ../libtool: line 1132: func_opt_split: command not found libtool: Version mismatch error. This is libtool 2.2.6b Debian-2.2.6b-2ubuntu1, but the libtool: definition of this LT_INIT comes from an older release. libtool: You should recreate aclocal.m4 with macros from libtool 2.2.6b Debian-2.2.6b-2ubuntu1 libtool: and run autoconf again. make[2]: *** [cudadetect] Error 63 make[2]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin' make: *** [all] Error 2 *************************************************************************************************
Any suggestions? I have only one version of libtool installed in my machine.
Regards, Panagiotis
On Mon, Nov 7, 2011 at 12:36 PM, Panagiotis Foteinos pafotein@gmail.com wrote:
Thank you all for the replies.
I am using Ubuntu (kernel-2.6.32-35) and gcc-4.4.3. I downloaded the stable version. So, I guess it is fine to ignore the warnings.
Best Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 12:24 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
which compiler version and OS platform are you using? and which checkout of the 'dev' trunk? dev or stable? currently the 'dev' trunk should build without warnings under gcc v4.4.5 (on Centos 6, kernel 2.6.32-131). but you can deactivate the -Werror switch to get things built on your system.
n.
On Mon, 2011-11-07 at 11:16 -0500, Panagiotis Foteinos wrote:
Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos _______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.
try this:
cd dev cp `which libtool` .
this will overwrite the libtool created by configure with the one on the system. the newest configure.in in the dev build should do this automatically.
n.
On Mon, 2011-11-07 at 15:59 -0500, Panagiotis Foteinos wrote:
Hello list.
So, while making the build directory, I got the following output:
Making all in gpu_utils make[2]: Entering directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' /bin/bash ../libtool --tag=CXX --mode=link g++ -rdynamic -ldl -L/usr/lib64 -L/usr/X11R6/lib64 -o cudadetect cudadetect-cudadetect.o -lz -lm -lcrypt -ldl -lpthread -lnetcdf -lvolume_io -lminc -lvnl_algo -lvnl -lvcl -lnetlib -lv3p_netlib ../libtool: line 454: CDPATH: command not found ../libtool: line 1132: func_opt_split: command not found libtool: Version mismatch error. This is libtool 2.2.6b Debian-2.2.6b-2ubuntu1, but the libtool: definition of this LT_INIT comes from an older release. libtool: You should recreate aclocal.m4 with macros from libtool 2.2.6b Debian-2.2.6b-2ubuntu1 libtool: and run autoconf again. make[2]: *** [cudadetect] Error 63 make[2]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin' make: *** [all] Error 2
Any suggestions? I have only one version of libtool installed in my machine.
Regards, Panagiotis
On Mon, Nov 7, 2011 at 12:36 PM, Panagiotis Foteinos pafotein@gmail.com wrote:
Thank you all for the replies.
I am using Ubuntu (kernel-2.6.32-35) and gcc-4.4.3. I downloaded the stable version. So, I guess it is fine to ignore the warnings.
Best Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 12:24 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
which compiler version and OS platform are you using? and which checkout of the 'dev' trunk? dev or stable? currently the 'dev' trunk should build without warnings under gcc v4.4.5 (on Centos 6, kernel 2.6.32-131). but you can deactivate the -Werror switch to get things built on your system.
n.
On Mon, 2011-11-07 at 11:16 -0500, Panagiotis Foteinos wrote:
Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos _______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.
I tried your suggestion for compiling the dev release and it worked.
Now, I am getting compilation errors. It seems that the vnl include directory is not found (althought it exists in my system under /usr/include/vxl/core). I tried to symlink it under /usr/include but then I encounter other problems.
Any suggestions? Maybe an older or newer version of vxl library? My system has vxl-1.13 installed.
Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 4:26 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
try this:
cd dev cp `which libtool` .
this will overwrite the libtool created by configure with the one on the system. the newest configure.in in the dev build should do this automatically.
n.
On Mon, 2011-11-07 at 15:59 -0500, Panagiotis Foteinos wrote:
Hello list.
So, while making the build directory, I got the following output:
Making all in gpu_utils make[2]: Entering directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' /bin/bash ../libtool --tag=CXX --mode=link g++ -rdynamic -ldl -L/usr/lib64 -L/usr/X11R6/lib64 -o cudadetect cudadetect-cudadetect.o -lz -lm -lcrypt -ldl -lpthread -lnetcdf -lvolume_io -lminc -lvnl_algo -lvnl -lvcl -lnetlib -lv3p_netlib ../libtool: line 454: CDPATH: command not found ../libtool: line 1132: func_opt_split: command not found libtool: Version mismatch error. This is libtool 2.2.6b Debian-2.2.6b-2ubuntu1, but the libtool: definition of this LT_INIT comes from an older release. libtool: You should recreate aclocal.m4 with macros from libtool 2.2.6b Debian-2.2.6b-2ubuntu1 libtool: and run autoconf again. make[2]: *** [cudadetect] Error 63 make[2]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin' make: *** [all] Error 2
Any suggestions? I have only one version of libtool installed in my machine.
Regards, Panagiotis
On Mon, Nov 7, 2011 at 12:36 PM, Panagiotis Foteinos pafotein@gmail.com wrote:
Thank you all for the replies.
I am using Ubuntu (kernel-2.6.32-35) and gcc-4.4.3. I downloaded the stable version. So, I guess it is fine to ignore the warnings.
Best Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 12:24 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
which compiler version and OS platform are you using? and which checkout of the 'dev' trunk? dev or stable? currently the 'dev' trunk should build without warnings under gcc v4.4.5 (on Centos 6, kernel 2.6.32-131). but you can deactivate the -Werror switch to get things built on your system.
n.
On Mon, 2011-11-07 at 11:16 -0500, Panagiotis Foteinos wrote:
Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos _______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.
I forgot to attach the error log in the previous email. My sincere apologies. So here it is:
**************************************************************************** In file included from ../../../src/freesurfer-src/dev/utils/cpputils.cpp:42: ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:54:28: error: vnl/vnl_matrix.h: No such file or directory ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:55:28: error: vnl/vnl_vector.h: No such file or directory ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:56:48: error: vnl/algo/vnl_symmetric_eigensystem.h: No such file or directory In file included from ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:57, from ../../../src/freesurfer-src/dev/utils/cpputils.cpp:42: ../../../src/freesurfer-src/dev/include/utilsmath.h:257: error: variable or field ‘GetSortedEigenVectors’ declared void ../../../src/freesurfer-src/dev/include/utilsmath.h:257: error: ‘vnl_symmetric_eigensystem’ was not declared in this scope ../../../src/freesurfer-src/dev/include/utilsmath.h:257: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:258: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:259: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:260: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:261: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/utils/cpputils.cpp:223: error: expected ‘}’ at end of input make[3]: *** [cpputils.o] Error 1 make[3]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/utils' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/utils' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin' make: *** [all] Error 2 ****************************************************************************
Regards, Panagiotis Foteinos
On Tue, Nov 8, 2011 at 2:06 PM, Panagiotis Foteinos pafotein@gmail.com wrote:
I tried your suggestion for compiling the dev release and it worked.
Now, I am getting compilation errors. It seems that the vnl include directory is not found (althought it exists in my system under /usr/include/vxl/core). I tried to symlink it under /usr/include but then I encounter other problems.
Any suggestions? Maybe an older or newer version of vxl library? My system has vxl-1.13 installed.
Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 4:26 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
try this:
cd dev cp `which libtool` .
this will overwrite the libtool created by configure with the one on the system. the newest configure.in in the dev build should do this automatically.
n.
On Mon, 2011-11-07 at 15:59 -0500, Panagiotis Foteinos wrote:
Hello list.
So, while making the build directory, I got the following output:
Making all in gpu_utils make[2]: Entering directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' /bin/bash ../libtool --tag=CXX --mode=link g++ -rdynamic -ldl -L/usr/lib64 -L/usr/X11R6/lib64 -o cudadetect cudadetect-cudadetect.o -lz -lm -lcrypt -ldl -lpthread -lnetcdf -lvolume_io -lminc -lvnl_algo -lvnl -lvcl -lnetlib -lv3p_netlib ../libtool: line 454: CDPATH: command not found ../libtool: line 1132: func_opt_split: command not found libtool: Version mismatch error. This is libtool 2.2.6b Debian-2.2.6b-2ubuntu1, but the libtool: definition of this LT_INIT comes from an older release. libtool: You should recreate aclocal.m4 with macros from libtool 2.2.6b Debian-2.2.6b-2ubuntu1 libtool: and run autoconf again. make[2]: *** [cudadetect] Error 63 make[2]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin' make: *** [all] Error 2
Any suggestions? I have only one version of libtool installed in my machine.
Regards, Panagiotis
On Mon, Nov 7, 2011 at 12:36 PM, Panagiotis Foteinos pafotein@gmail.com wrote:
Thank you all for the replies.
I am using Ubuntu (kernel-2.6.32-35) and gcc-4.4.3. I downloaded the stable version. So, I guess it is fine to ignore the warnings.
Best Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 12:24 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
which compiler version and OS platform are you using? and which checkout of the 'dev' trunk? dev or stable? currently the 'dev' trunk should build without warnings under gcc v4.4.5 (on Centos 6, kernel 2.6.32-131). but you can deactivate the -Werror switch to get things built on your system.
n.
On Mon, 2011-11-07 at 11:16 -0500, Panagiotis Foteinos wrote:
Hello list.
I am compiling the source code and I get some warnings as errors. Is there a good reason that the switch -Werror is activated, or I can safely deactivate it? Could I assume that the warnings I get are harmless?
Best Regards, Panagiotis Foteinos _______________________________________________ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.
see ./configure --help for flags on how to point the build at your libs. also see: https://surfer.nmr.mgh.harvard.edu/fswiki/DevelopersGuide
note that typically we recommend building the 3rd party packages from scratch, as its hard to know whats really installed on your system already (see the README build notes).
n.
On Tue, 2011-11-08 at 14:14 -0500, Panagiotis Foteinos wrote:
I forgot to attach the error log in the previous email. My sincere apologies. So here it is:
In file included from ../../../src/freesurfer-src/dev/utils/cpputils.cpp:42: ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:54:28: error: vnl/vnl_matrix.h: No such file or directory ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:55:28: error: vnl/vnl_vector.h: No such file or directory ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:56:48: error: vnl/algo/vnl_symmetric_eigensystem.h: No such file or directory In file included from ../../../src/freesurfer-src/dev/include/MRISOBBTree.h:57, from ../../../src/freesurfer-src/dev/utils/cpputils.cpp:42: ../../../src/freesurfer-src/dev/include/utilsmath.h:257: error: variable or field ‘GetSortedEigenVectors’ declared void ../../../src/freesurfer-src/dev/include/utilsmath.h:257: error: ‘vnl_symmetric_eigensystem’ was not declared in this scope ../../../src/freesurfer-src/dev/include/utilsmath.h:257: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:258: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:259: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:260: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/include/utilsmath.h:261: error: expected primary-expression before ‘double’ ../../../src/freesurfer-src/dev/utils/cpputils.cpp:223: error: expected ‘}’ at end of input make[3]: *** [cpputils.o] Error 1 make[3]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/utils' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/utils' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin' make: *** [all] Error 2
Regards, Panagiotis Foteinos
On Tue, Nov 8, 2011 at 2:06 PM, Panagiotis Foteinos pafotein@gmail.com wrote:
I tried your suggestion for compiling the dev release and it worked.
Now, I am getting compilation errors. It seems that the vnl include directory is not found (althought it exists in my system under /usr/include/vxl/core). I tried to symlink it under /usr/include but then I encounter other problems.
Any suggestions? Maybe an older or newer version of vxl library? My system has vxl-1.13 installed.
Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 4:26 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
try this:
cd dev cp `which libtool` .
this will overwrite the libtool created by configure with the one on the system. the newest configure.in in the dev build should do this automatically.
n.
On Mon, 2011-11-07 at 15:59 -0500, Panagiotis Foteinos wrote:
Hello list.
So, while making the build directory, I got the following output:
Making all in gpu_utils make[2]: Entering directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' /bin/bash ../libtool --tag=CXX --mode=link g++ -rdynamic -ldl -L/usr/lib64 -L/usr/X11R6/lib64 -o cudadetect cudadetect-cudadetect.o -lz -lm -lcrypt -ldl -lpthread -lnetcdf -lvolume_io -lminc -lvnl_algo -lvnl -lvcl -lnetlib -lv3p_netlib ../libtool: line 454: CDPATH: command not found ../libtool: line 1132: func_opt_split: command not found libtool: Version mismatch error. This is libtool 2.2.6b Debian-2.2.6b-2ubuntu1, but the libtool: definition of this LT_INIT comes from an older release. libtool: You should recreate aclocal.m4 with macros from libtool 2.2.6b Debian-2.2.6b-2ubuntu1 libtool: and run autoconf again. make[2]: *** [cudadetect] Error 63 make[2]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin/gpu_utils' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/pfoteino/local/bin/freesurfer-bin' make: *** [all] Error 2
Any suggestions? I have only one version of libtool installed in my machine.
Regards, Panagiotis
On Mon, Nov 7, 2011 at 12:36 PM, Panagiotis Foteinos pafotein@gmail.com wrote:
Thank you all for the replies.
I am using Ubuntu (kernel-2.6.32-35) and gcc-4.4.3. I downloaded the stable version. So, I guess it is fine to ignore the warnings.
Best Regards, Panagiotis Foteinos
On Mon, Nov 7, 2011 at 12:24 PM, Nick Schmansky nicks@nmr.mgh.harvard.edu wrote:
which compiler version and OS platform are you using? and which checkout of the 'dev' trunk? dev or stable? currently the 'dev' trunk should build without warnings under gcc v4.4.5 (on Centos 6, kernel 2.6.32-131). but you can deactivate the -Werror switch to get things built on your system.
n.
On Mon, 2011-11-07 at 11:16 -0500, Panagiotis Foteinos wrote: > Hello list. > > I am compiling the source code and I get some warnings as errors. Is > there a good reason that the switch -Werror is activated, or I can > safely deactivate it? Could I assume that the warnings I get are > harmless? > > Best Regards, > Panagiotis Foteinos > _______________________________________________ > Freesurfer mailing list > Freesurfer@nmr.mgh.harvard.edu > https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer > >
The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.
freesurfer@nmr.mgh.harvard.edu