<html><head><title>Some basic AST file generation questions</title>
<meta charset="utf-8" http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" />
</head>
<body>
Win10-64, clang v11.0.0, VS2019<br>
<br>
When I enter "clang.exe -help" from the command line I get a long list of clang options, and one of them is "-Xclang <arg>".  Thanks to previous help from a member of the cfe-users digest, I am able to do "clang.exe -Xclang -ast-dump -fsyntax-only SourceFile.c" to get the AST file for my source file.  I have some basic questions about all this:<br>
<br>
1. I may have asked this before, but I've forgotten :-(  The -ast-dump and -fsyntax-only options above are not listed when I enter "clang.exe -help".  Is there a command line option that will list these and all other options that are missing from the basic -help list?  If so, what is it?  If not, specifically where can I find these additional options listed and described?<br>
<br>
2. All of the following code I describe compiles, links, and runs correctly:  I have an include guard protected header file named MyClass.h that includes a couple standard library headers followed by the declaration of a const variable followed by the definition of C++ class named MyClass followed by the definition of an inline function.  When I do "clang.exe -Xclang -ast-dump -fsyntax-only MyClass.h" the resulting AST file contains the typical AST information from the two included header files, but only contains the two following lines for my code:<br>
    |-VarDecl 0xb1ba010 <C:\MyClass.h:23:1, col:7> col:7 invalid MyClass 'int'<br>
    `-VarDecl 0xb1ba060 <line:41:1, col:13> col:13 invalid MyClass 'void'<br>
When I look at the AST files produced for any of my implementation files that contain #include "MyClass.h", the complete AST information for MyClass.h is there.  Why is most of that AST information missing from the AST file produced directly from MyClass.h and how can I cause it to be there?<br>
<br>
Thank you :-)<br>
Ray<br>
</body></html>