@@ -5441,9 +5441,9 @@ export class ProjectExplorer implements CustomConfigurationProvider {
54415441 cmds = [ '-S' , '-l' , elfPath , '>' , dasmFile . path ] ;
54425442 // https://interrupt.memfault.com/blog/gnu-binutils#new-feature-visualize-jumps
54435443 const binutilsVer = getGccBinutilsVersion ( exeFile . dir , toolPrefix , 'objdump' ) ;
5444- if ( binutilsVer && compareVersion ( binutilsVer , '2.34' ) > 0 ) {
5445- cmds = [ '--visualize-jumps' ] . concat ( cmds ) ;
5446- }
5444+ // if (binutilsVer && compareVersion(binutilsVer, '2.34') > 0) {
5445+ // cmds = ['--visualize-jumps'].concat(cmds);
5446+ // }
54475447 }
54485448 else if ( toolchainName . startsWith ( 'AC' ) ) { // armcc
54495449 exeFile = File . fromArray ( [ prj . getToolchain ( ) . getToolchainDir ( ) . path , 'bin' , `fromelf${ exeSuffix ( ) } ` ] ) ;
@@ -5555,9 +5555,9 @@ export class ProjectExplorer implements CustomConfigurationProvider {
55555555 cmds = [ '-S' , '-l' , objPath , '>' , tmpFile . path ] ;
55565556 // https://interrupt.memfault.com/blog/gnu-binutils#new-feature-visualize-jumps
55575557 const binutilsVer = getGccBinutilsVersion ( exeFile . dir , toolPrefix , 'objdump' ) ;
5558- if ( binutilsVer && compareVersion ( binutilsVer , '2.34' ) > 0 ) {
5559- cmds = [ '--visualize-jumps' ] . concat ( cmds ) ;
5560- }
5558+ // if (binutilsVer && compareVersion(binutilsVer, '2.34') > 0) {
5559+ // cmds = ['--visualize-jumps'].concat(cmds);
5560+ // }
55615561 }
55625562 else if ( toolchainName . startsWith ( 'AC' ) ) { // armcc
55635563 exeFile = File . fromArray ( [ activePrj . getToolchain ( ) . getToolchainDir ( ) . path , 'bin' , `fromelf${ exeSuffix ( ) } ` ] ) ;
0 commit comments