mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
68 lines
3.1 KiB
Properties
68 lines
3.1 KiB
Properties
# if you want a specific includePath for a specific compiler,
|
|
# you can set it up in that compiler's config, with, say
|
|
# compiler.my_clang.include=path_to_libc++
|
|
|
|
includePath=/mnt/c/Program Files (x86)/Microsoft Visual Studio/Preview/Enterprise/VC/Tools/MSVC/14.15.26608/ATLMFC/include;/mnt/c/Program Files (x86)/Microsoft Visual Studio/Preview/Enterprise/VC/Tools/MSVC/14.15.26608/include;/mnt/c/Program Files (x86)/Windows Kits/10/include/10.0.17134.0/ucrt;/mnt/c/Program Files (x86)/Windows Kits/10/include/10.0.17134.0/shared;/mnt/c/Program Files (x86)/Windows Kits/10/include/10.0.17134.0/um;/mnt/c/Program Files (x86)/Windows Kits/10/include/10.0.17134.0/winrt;/mnt/c/Program Files (x86)/Windows Kits/10/include/10.0.17134.0/cppwinrt
|
|
|
|
# replace with the result of `where undname.exe` from a developer command prompt
|
|
|
|
demangler=/mnt/c/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Tools/MSVC/14.14.26428/bin/Hostx64/x64/undname.exe
|
|
demanglerType=win32
|
|
|
|
# the compiler you want compiler explorer to start up in
|
|
|
|
defaultCompiler=vc2017_64
|
|
|
|
|
|
# note: adding new compiler groups
|
|
# the default compiler groups should be fine for most,
|
|
# but if you'd like to add more groups
|
|
# (for example, for vc 2015, or for gcc),
|
|
# you can uncomment and edit the following lines.
|
|
# check `c++.win32.properties` for how to modify the group options
|
|
|
|
compilers=&vc2017:&clang
|
|
group.vc2017.compilers=&vc2017_32:&vc2017_64
|
|
group.clang.compilers=&clang_32:&clang_64
|
|
|
|
group.vc2017.compilerType=wsl-vc
|
|
group.vc2017.supportsBinary=false
|
|
|
|
# clang compilers
|
|
# if you want more compilers, you can do that by separating the names with `:`
|
|
# and then setting up a compiler.my_clang.exe and compiler.my_clang.name
|
|
|
|
group.clang_32.compilers=clang_32
|
|
group.clang_64.compilers=clang_64
|
|
|
|
|
|
# this is the default path that clang++ is installed in
|
|
# if you installed it somewhere else, you should edit both variables
|
|
|
|
compiler.clang_32.exe=/mnt/c/Program Files/LLVM/bin/clang++.exe
|
|
compiler.clang_32.name=clang x86
|
|
|
|
compiler.clang_64.exe=/mnt/c/Program Files/LLVM/bin/clang++.exe
|
|
compiler.clang_64.name=clang amd64
|
|
|
|
# visual C++ 2017 compilers
|
|
# follow the same instructions as for clang
|
|
# note that if CE doesn't find a compiler, it won't break anything
|
|
|
|
group.vc2017_32.compilers=vc2017_32:vc2017_32_preview
|
|
group.vc2017_64.compilers=vc2017_64:vc2017_64_preview
|
|
|
|
|
|
# these are pointed at my own installation;
|
|
# you'll likely have to change the paths for your own machine
|
|
|
|
compiler.vc2017_32.exe=/mnt/c/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Tools/MSVC/14.14.26428/bin/Hostx64/x86/cl.exe
|
|
compiler.vc2017_32.name=VC 2017 x86
|
|
compiler.vc2017_32_preview.exe=/mnt/c/Program Files (x86)/Microsoft Visual Studio/Preview/Enterprise/VC/Tools/MSVC/14.15.26608/bin/Hostx64/x86/cl.exe
|
|
compiler.vc2017_32_preview.name=Preview VC 2017 x86
|
|
|
|
compiler.vc2017_64.exe=/mnt/c/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Tools/MSVC/14.14.26428/bin/Hostx64/x64/cl.exe
|
|
compiler.vc2017_64.name=VC 2017 amd64
|
|
compiler.vc2017_64_preview.exe=/mnt/c/Program Files (x86)/Microsoft Visual Studio/Preview/Enterprise/VC/Tools/MSVC/14.15.26608/bin/Hostx64/x64/cl.exe
|
|
compiler.vc2017_64_preview.name=Preview VC 2017 amd64
|