From e8aebc02ce76ac96d26efefa81cfaffc9de35d5d Mon Sep 17 00:00:00 2001 From: BenWeber42 Date: Sat, 8 Jun 2024 21:00:05 +0200 Subject: [PATCH] Changed Xilinx C++11 flag to C++14 (#1585) Our documentation already states that DaCe requires a C++14 capable compiler: https://spcldace.readthedocs.io/en/latest/setup/installation.html#dependencies Additionally, Xilinx Vitis HLS does support C++14. It just wasn't enabled (instead, C++11 support was enabled). --- dace/config_schema.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dace/config_schema.yml b/dace/config_schema.yml index b26e96e920..da35e61997 100644 --- a/dace/config_schema.yml +++ b/dace/config_schema.yml @@ -540,7 +540,7 @@ required: type: str title: Synthesis arguments description: High-level synthesis C++ flags - default: "-std=c++11" + default: "-std=c++14" build_flags: type: str