From ce2d8f1755f3a2ddd90a9bc8595d5b581dde42ba Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Thu, 13 Feb 2020 20:16:09 +0100 Subject: [PATCH] build: Adjustments for scons running in Python 3. --- SConscript.target | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript.target b/SConscript.target index fa4ca17..afd10bd 100644 --- a/SConscript.target +++ b/SConscript.target @@ -36,7 +36,7 @@ env.Append(LINKFLAGS = [ libgcc_path = \ subprocess.check_output('{} -print-libgcc-file-name'.format(env['CC']), - shell=True).strip() + shell=True).strip().decode('utf-8') env.Append(RUSTCFLAGS = [ '-C', 'opt-level=s', -- 2.30.2