From a83ca34dac9ad26fd6aa432fbb1a722ec7188931 Mon Sep 17 00:00:00 2001 From: fgsfds Date: Mon, 24 May 2021 02:22:30 +0300 Subject: [PATCH] switch: use normal libsolder --- engine/wscript | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/wscript b/engine/wscript index 9d99be50..e6f61e0b 100644 --- a/engine/wscript +++ b/engine/wscript @@ -59,8 +59,7 @@ def configure(conf): conf.fatal('SDL2 not availiable! Install switch-sdl2!') conf.define('XASH_SDL', 2) # find our dynamic linker - # conf.check_cfg(package='solder', args='--cflags --libs', uselib_store='SOLDER') - conf.env.append_unique('LDFLAGS', '-lsolderd') + conf.check_cfg(package='solder', args='--cflags --libs', uselib_store='SOLDER') # disallow undefined symbols conf.env.append_unique('CXXFLAGS', '-Wl,--no-undefined') conf.env.append_unique('CFLAGS', '-Wl,--no-undefined')