<html><head><title>clang-format -style=file fails</title>
</head>
<body>
<span style=" font-family:'Consolas'; font-size: 12pt; color: #000000;">I'm trying to configure a custom style options file for clang-format v6.0.0 running on Windows 10 Pro 64-bit.  I started out by generating a configuration file based upon the llvm style using the following command line, which worked fine:<br>
    clang-format -style=llvm -dump-config > .clang-format<br>
   <br>
The documentation for clang-format states the following:<br>
"When the desired code formatting style is different from the available options, the style can be customized using the -style="{key: value, ...}" option or by putting your style configuration in the .clang-format or _clang-format file in your project’s directory and using clang-format -style=file."<br>
<br>
So just as a test I used the unchanged .clang-format file I generated above and used the following command line:<br>
    clang-format -style=.clang-format Test.c<br>
The result was a message that said "Invalid value for -style".  I then changed the name of .clang-format to _clang-format and tried it again but the result was the same.  So, my question is, "How do I specify a specific style options file?"<br>
<br>
Thanks!<br>
Ray</body></html>