comparison src/Makefile @ 13353:8412df1479a3 v8.0.1550

patch 8.0.1550: various small problems in source files commit https://github.com/vim/vim/commit/792f0e36593d1ec13ccb8a622ca5542c500577b4 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 27 17:27:13 2018 +0100 patch 8.0.1550: various small problems in source files Problem: Various small problems in source files. Solution: Fix the problems.
author Christian Brabandt <cb@256bit.org>
date Tue, 27 Feb 2018 17:30:08 +0100
parents e985194a76f1
children 94e638936d3e
comparison
equal deleted inserted replaced
13352:764ce635fdc7 13353:8412df1479a3
649 #LINT = splint 649 #LINT = splint
650 #LINT_OPTIONS = +unixlib -weak -macrovarprefixexclude -showfunc -linelen 9999 650 #LINT_OPTIONS = +unixlib -weak -macrovarprefixexclude -showfunc -linelen 9999
651 651
652 # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof. 652 # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof.
653 # Might not work with GUI or Perl. 653 # Might not work with GUI or Perl.
654 # For unknown reasons adding "-lc" fixes a linking problem with some versions
655 # of GCC. That's probably a bug in the "-pg" implementation.
656 # After running Vim see the profile result with: gprof vim gmon.out | vim - 654 # After running Vim see the profile result with: gprof vim gmon.out | vim -
657 # Need to recompile everything after changing this: "make clean" "make". 655 # Need to recompile everything after changing this: "make clean" "make".
658 #PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING 656 #PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING
659 #PROFILE_LIBS = -pg 657 #PROFILE_LIBS = -pg
658
659 # GCC 5 and later need the -no-pie argument.
660 #PROFILE_LIBS = -pg -no-pie
661
662 # For unknown reasons adding "-lc" fixes a linking problem with some versions
663 # of GCC. That's probably a bug in the "-pg" implementation.
660 #PROFILE_LIBS = -pg -lc 664 #PROFILE_LIBS = -pg -lc
661 665
662 666
663 # TEST COVERAGE - Uncomment the two lines below the explanation to get code 667 # TEST COVERAGE - Uncomment the two lines below the explanation to get code
664 # coverage information. (provided by Yegappan Lakshmanan) 668 # coverage information. (provided by Yegappan Lakshmanan)