You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
318 B
10 lines
318 B
include(cura.jinja) |
|
{% set compiler, version, compiler_exe = detect_api.detect_clang_compiler(compiler_exe="clang") %} |
|
|
|
[settings] |
|
compiler={{ compiler }} |
|
compiler.version={{ version.major }} |
|
compiler.libcxx=libstdc++11 |
|
|
|
[conf] |
|
tools.build:compiler_executables={"c":"{{ compiler_exe }}", "cpp":"{{ compiler_exe }}++"}
|
|
|