Add bounds check to build and fix editorconfig
This commit is contained in:
parent
c5c9930a55
commit
775dc924a5
2 changed files with 4 additions and 4 deletions
|
@ -2,5 +2,5 @@ root = true
|
|||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
indent_style = space
|
||||
indent_style = tab
|
||||
indent_size = 4
|
6
configure
vendored
6
configure
vendored
|
@ -4,14 +4,14 @@
|
|||
|
||||
set -e
|
||||
|
||||
IMPORT=import
|
||||
import=import
|
||||
|
||||
mkf=Makefile
|
||||
cflags=-I"$IMPORT"
|
||||
cflags='-I'"$import"' -boundscheck=on'
|
||||
objs='esv.o esvapi.o'
|
||||
srcs='esv.d esvapi.d'
|
||||
makefile='
|
||||
IMPORT = '"$IMPORT"'
|
||||
IMPORT = '"$import"'
|
||||
PREFIX = /usr/local
|
||||
MANPREFIX = ${PREFIX}/man
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue