started to improve compiler

This commit is contained in:
2025-10-29 13:41:59 +02:00
parent a22ab19a8c
commit 34e54fdc0d
5 changed files with 22 additions and 8 deletions

View File

@@ -22,7 +22,6 @@ class CClangCompiler : public ICCompiler
{
public:
virtual LinkProject_t Compile( CProject_t *pProject ) override;
virtual void GenerateLinterData( void ) override;
};
EXPOSE_INTERFACE(CClangCompiler, ICCompiler, CLANG_C_COMPILER_INTERFACE_NAME);

View File

View File

@@ -55,8 +55,7 @@ LinkProject_t CMSVCCompiler::Compile( CProject_t *pProject )
if (!pSection)
Plat_FatalErrorFunc("MSVC_C_COMPILER_INTERFACE_NAME was not found in .fpccfg\n");
CUtlString szExePath = pSection->GetStringValue("exe");
if (!pSection)
Plat_FatalErrorFunc("exe was not found in MSVC_C_COMPILER_INTERFACE_NAME\n");
bool bUseClangCL = pSection->GetStringValue("exe");

0
fpc/library/windows/c.h Normal file
View File