diff options
author | Simon Glass <sjg@chromium.org> | 2020-02-03 07:36:12 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-02-05 19:33:46 -0700 |
commit | 96d0cd460430f18d0f22eead5409ed3dc53b4c4e (patch) | |
tree | 6af1d60c2ada306a02fb02502d2239769b585b34 /arch/sandbox/config.mk | |
parent | af800722eb718bec51c5943cfb69231acf15178f (diff) | |
download | u-boot-96d0cd460430f18d0f22eead5409ed3dc53b4c4e.tar.gz |
sandbox: sdl: Move to use SDL2
Sandbox currently uses SDL1.2. SDL2 has been around for quite a while and
is widely supported. It has a number of useful features. It seems
appropriate to move sandbox over.
Update the code to use SDL2 instead of SDL1.2.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/config.mk')
-rw-r--r-- | arch/sandbox/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/config.mk b/arch/sandbox/config.mk index a225c9cbfa..189e9c2b0c 100644 --- a/arch/sandbox/config.mk +++ b/arch/sandbox/config.mk @@ -5,7 +5,7 @@ PLATFORM_CPPFLAGS += -D__SANDBOX__ -U_FORTIFY_SOURCE PLATFORM_CPPFLAGS += -DCONFIG_ARCH_MAP_SYSMEM PLATFORM_CPPFLAGS += -fPIC PLATFORM_LIBS += -lrt -SDL_CONFIG ?= sdl-config +SDL_CONFIG ?= sdl2-config # Define this to avoid linking with SDL, which requires SDL libraries # This can solve 'sdl-config: Command not found' errors |