mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 01:56:38 +00:00
Build: Prepend $PRE_CXX before the C++ compiler.
This allows you to set e.g PRE_CXX=ccache in your environment and enjoy cached rebuilds. This makes "./makeall.sh" take 5 seconds instead of 50 seconds on my machine. :^)
This commit is contained in:
parent
182c5d8aad
commit
fe69b326e9
Notes:
sideshowbarker
2024-07-19 13:21:18 +09:00
Author: https://github.com/awesomekling
Commit: fe69b326e9
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ CLANG_FLAGS = -Wconsumed -m32 -ffreestanding -march=i686
|
|||
#SUGGEST_FLAGS = -Wsuggest-final-types -Wsuggest-final-methods -Wsuggest-override #-Wsuggest-attribute=noreturn
|
||||
CXXFLAGS = -MMD -MP $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(FLAVOR_FLAGS) $(ARCH_FLAGS) $(STANDARD_FLAGS) $(SUGGEST_FLAGS) $(INCLUDE_FLAGS) $(DEFINES)
|
||||
#CXX = clang $(CLANG_FLAGS)
|
||||
CXX = i686-pc-serenity-g++
|
||||
CXX = $(PRE_CXX) i686-pc-serenity-g++
|
||||
LD = i686-pc-serenity-g++
|
||||
AS = i686-pc-serenity-as
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue