From aa1b9bdef2a66205e34b0a62c80d8b1b70268825 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 21 Nov 2021 20:36:40 -0500 Subject: sim: testsuite: punt unused toolchain variables These haven't been used in over 20 years. The sim testsuite used to run these tools itself directly, but back in ~1999 it switched to the dejagnu helpers (e.g. target_assemble & target_link), and the dejagnu logic only utilizes XXX_FOR_TARGET variables. Punt them here to avoid confusion with dead code. --- sim/testsuite/config/default.exp | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'sim/testsuite/config') diff --git a/sim/testsuite/config/default.exp b/sim/testsuite/config/default.exp index 56255a3..c167e10 100644 --- a/sim/testsuite/config/default.exp +++ b/sim/testsuite/config/default.exp @@ -2,41 +2,4 @@ load_lib sim-defs.exp -global AS -if ![info exists AS] { - set AS [findfile $base_dir/../../gas/as-new $base_dir/../../gas/as-new \ - [transform as]] -} - -global ASFLAGS -if ![info exists ASFLAGS] { - set ASFLAGS "" -} - -# Compilation is achieved with sim_compile ... so we don't check $CC here. - -global CFLAGS -if ![info exists CFLAGS] { - set CFLAGS "" -} - -global LD -if ![info exists LD] { - set LD [findfile $base_dir/../../ld/ld-new $base_dir/../../ld/ld-new \ - [transform ld]] -} - -global LDFLAGS -if ![info exists LDFLAGS] { - set LDFLAGS "" -} - -# The path to the simulator is obtained with [board_info host sim], -# so we don't check $SIM here. - -global SIMFLAGS -if ![info exists SIMFLAGS] { - set SIMFLAGS "" -} - sim_init -- cgit v1.1