From 331eeb250856edc9d68af0c06ab2fd715d37ae4d Mon Sep 17 00:00:00 2001 From: imaginaryPineapple Date: Wed, 30 Oct 2024 17:52:20 +0200 Subject: [PATCH] Fixed clang-debug target trying to build with gcc. (#3368) Co-authored-by: -- <--> --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 71cd445ef..fbf3b6a88 100644 --- a/makefile +++ b/makefile @@ -108,7 +108,7 @@ linux-gcc: linux-gcc-debug64 linux-gcc-release64 ## Build - Linux GCC x86/x64 De .build/projects/gmake-linux-clang: $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=linux-clang gmake linux-clang-debug64: .build/projects/gmake-linux-clang ## Build - Linux Clang x64 Debug - $(MAKE) -R -C .build/projects/gmake-linux-gcc config=debug64 + $(MAKE) -R -C .build/projects/gmake-linux-clang config=debug64 linux-clang-release64: .build/projects/gmake-linux-clang ## Build - Linux Clang x64 Release $(MAKE) -R -C .build/projects/gmake-linux-clang config=release64 linux-clang: linux-clang-debug64 linux-clang-release64 ## Build - Linux Clang x86/x64 Debug and Release