소스 검색

Fix LLVM LTO error message

Brian Fiete 3 년 전
부모
커밋
e7f50985dc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      IDEHelper/Compiler/BfCompiler.cpp

+ 1 - 1
IDEHelper/Compiler/BfCompiler.cpp

@@ -6584,7 +6584,7 @@ bool BfCompiler::DoCompile(const StringImpl& outputDirectory)
 		if (!hotSwapErrors.IsEmpty())
 		if (!hotSwapErrors.IsEmpty())
 			mPassInstance->Fail(StrFormat("Hot compilation cannot be used when LTO is enabled in '%s'. Consider setting 'Workspace/Beef/Debug/Enable Hot Compilation' to 'No'.", hotSwapErrors.c_str()));
 			mPassInstance->Fail(StrFormat("Hot compilation cannot be used when LTO is enabled in '%s'. Consider setting 'Workspace/Beef/Debug/Enable Hot Compilation' to 'No'.", hotSwapErrors.c_str()));
 		if (!toolsetErrors.IsEmpty())
 		if (!toolsetErrors.IsEmpty())
-			mPassInstance->Fail(StrFormat("The Workspace Toolset must be set to 'LLVM' in order to use LTO in '%s'. Consider changing 'Workspace/General/Toolset' to 'LLVM'.", toolsetErrors.c_str()));
+			mPassInstance->Fail(StrFormat("The Workspace Toolset must be set to 'LLVM' in order to use LTO in '%s'. Consider changing 'Workspace/Targeted/Build/Toolset' to 'LLVM'.", toolsetErrors.c_str()));
 	}
 	}
 
 
 	//
 	//