mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-21 04:40:08 -04:00
fix(makefile): add forgotten CXX_STANDARD again
This commit is contained in:
parent
7e3b06df71
commit
b9c6f3ed45
1 changed files with 2 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
CFLAGS ?= -Os -std=c99 -fPIC
|
CFLAGS ?= -Os -std=c99 -fPIC
|
||||||
CXXFLAGS ?= -Os -std=c++14 -fPIC
|
CXX_STANDARD ?= c++14
|
||||||
|
CXXFLAGS ?= -Os -std=$(CXX_STANDARD) -fPIC
|
||||||
LDFLAGS ?=
|
LDFLAGS ?=
|
||||||
SRC_DIR ?= ./src
|
SRC_DIR ?= ./src
|
||||||
DEST_DIR ?= ./dest
|
DEST_DIR ?= ./dest
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue