Paul C. Anagnostopoulos via llvm-dev
2020-Jul-29 16:03 UTC
[llvm-dev] Building a single .rst file
Is "Unix Makefiles" what I want if I am building on Windows using GNU make? At 7/28/2020 10:41 PM, Xing GUO wrote:>On 7/29/20, Paul C. Anagnostopoulos via llvm-dev ><llvm-dev at lists.llvm.org> wrote: >> Folks, >> >> Total newbie here. What is the simplest way to build a single .rst file so >> that I can look at the generated HTML? I have CMake, Python, and Sphinx >> installed. > >Hi Paul, > >I'm not sure if there are ways to build a single .rst file. But I >usually build LLVM documentation via the following steps. > >``` >$ cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release >-DLLVM_ENABLE_SPHINX=On $YOUR_LLVM_PROJECT_PATH/llvm >$ make docs-llvm-html >``` > >Best Regards, >Xing
On 7/30/20, Paul C. Anagnostopoulos <paul at windfall.com> wrote:> Is "Unix Makefiles" what I want if I am building on Windows using GNU make?Yes, exactly. Best Regards, Xing> At 7/28/2020 10:41 PM, Xing GUO wrote: >>On 7/29/20, Paul C. Anagnostopoulos via llvm-dev >><llvm-dev at lists.llvm.org> wrote: >>> Folks, >>> >>> Total newbie here. What is the simplest way to build a single .rst file >>> so >>> that I can look at the generated HTML? I have CMake, Python, and Sphinx >>> installed. >> >>Hi Paul, >> >>I'm not sure if there are ways to build a single .rst file. But I >>usually build LLVM documentation via the following steps. >> >>``` >>$ cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release >>-DLLVM_ENABLE_SPHINX=On $YOUR_LLVM_PROJECT_PATH/llvm >>$ make docs-llvm-html >>``` >> >>Best Regards, >>Xing > >-- Cheers, Xing
Paul C. Anagnostopoulos via llvm-dev
2020-Jul-29 16:40 UTC
[llvm-dev] Building a single .rst file
I hope you won't mind me continuing to pester you with build questions. I've managed to get the build going. One of the things CMake does is create a file a.exe that tries to figure out which version of the C compiler is available. Malwarebytes does not like that executable. Has anyone run into this problem? Meanwhile, I've told Malwarebytes not to worry about the build directory or its subdirectories. Ah, now I have more information from Microsoft Security Essentials, also concerning a.exe. The Trojan is called Win32/Fuery.C!cl ------------------------------ Category: Trojan Description: This program is dangerous and executes commands from an attacker. Recommended action: Remove this software immediately. Items: file:C:\LLVM\Build\CMakeFiles\3.18.0\CompilerIdC\a.exe Get more information about this item online. --------------------------------- At 7/29/2020 12:14 PM, Xing GUO wrote:>On 7/30/20, Paul C. Anagnostopoulos <paul at windfall.com> wrote: >> Is "Unix Makefiles" what I want if I am building on Windows using GNU make? > >Yes, exactly. > >Best Regards, >Xing