Yegappan wrote: On Wed, Jun 2, 2021 at 8:08 AM Bram Moolenaar <[email protected]> wrote:
[...] > > *************** > > *** 463,469 **** > > # TCL > > # Uncomment this when you want to include the Tcl interface. > > # First one is for static linking, second one for dynamic loading. > > ! #CONF_OPT_TCL = --enable-tclinterp > > #CONF_OPT_TCL = --enable-tclinterp=dynamic > > #CONF_OPT_TCL = --enable-tclinterp --with-tclsh=tclsh8.4 > > > > --- 466,472 ---- > > # TCL > > # Uncomment this when you want to include the Tcl interface. > > # First one is for static linking, second one for dynamic loading. > > ! CONF_OPT_TCL = --enable-tclinterp > > #CONF_OPT_TCL = --enable-tclinterp=dynamic > > #CONF_OPT_TCL = --enable-tclinterp --with-tclsh=tclsh8.4 This should not have been included. > > *************** > > *** 690,705 **** > > # PROFILE_CFLAGS=-g -O0 --coverage -DWE_ARE_PROFILING -DUSE_GCOV_FLUSH > > > > > > ! # Uncomment one of the next two lines to compile Vim with the > > ! # address sanitizer (asan) or with the undefined sanitizer. Works with > > gcc. > > # May make Vim twice as slow. Errors are reported on stderr. > > # More at: https://code.google.com/p/address-sanitizer/ > > # Useful environment variables: > > # $ export ASAN_OPTIONS="print_stacktrace=1 log_path=asan" > > # $ export LSAN_OPTIONS="suppressions=`pwd`/testdir/lsan-suppress.txt" > > # When running tests output can be found in testdir/asan.* > > ! #SANITIZER_CFLAGS = -g -O0 -fsanitize=address -fno-omit-frame-pointer > > ! #SANITIZER_CFLAGS = -g -O0 -fsanitize=undefined -fno-omit-frame-pointer > > > > # Similarly when compiling with clang and using ubsan. > > # $ export UBSAN_OPTIONS="print_stacktrace=1 log_path=ubsan" > > --- 693,710 ---- > > # PROFILE_CFLAGS=-g -O0 --coverage -DWE_ARE_PROFILING -DUSE_GCOV_FLUSH > > > > > > ! # Uncomment the next lines to compile Vim with the address sanitizer > > (asan) and > > ! # with the undefined sanitizer. Works with gcc. > > ! # You should also use -DEXITFREE to avoid false reports. > > # May make Vim twice as slow. Errors are reported on stderr. > > # More at: https://code.google.com/p/address-sanitizer/ > > # Useful environment variables: > > # $ export ASAN_OPTIONS="print_stacktrace=1 log_path=asan" > > # $ export LSAN_OPTIONS="suppressions=`pwd`/testdir/lsan-suppress.txt" > > # When running tests output can be found in testdir/asan.* > > ! #SANITIZER_CFLAGS = -g -O0 -fsanitize-recover=all \ > > ! # -fsanitize=address -fsanitize=undefined \ > > ! # -fno-omit-frame-pointer > > > > # Similarly when compiling with clang and using ubsan. > > # $ export UBSAN_OPTIONS="print_stacktrace=1 log_path=ubsan" > > *************** > > *** 979,985 **** > > > > # The value of QUOTESED comes from auto/config.mk. > > # Uncomment the next line to use the default value. > > ! # QUOTESED = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/' > > > > ##################### end of system specific lines ################### }}} > > > > --- 984,990 ---- > > > > # The value of QUOTESED comes from auto/config.mk. > > # Uncomment the next line to use the default value. > > ! # QUOTESED = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/' -e > > 's/ */ /g' > > > > ##################### end of system specific lines ################### }}} > > > > The above changes to Makefile are not part of the original PR. Yeah, I could have move these to a separate patch, but was too lazy... -- Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us. (Calvin) /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/202106022005.152K5fu52676714%40masaka.moolenaar.net.
