File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## v2.2.2
2
+ - Fix compiler and linker default arguments
3
+
1
4
## v2.2.1
2
5
- Fix arguments duplication for Atmel version of avr-size
3
6
Original file line number Diff line number Diff line change 17
17
"url" : " https://github.com/Alex079/vscode-avr-helper"
18
18
},
19
19
"publisher" : " Alex079" ,
20
- "version" : " 2.2.1 " ,
20
+ "version" : " 2.2.2 " ,
21
21
"engines" : {
22
22
"vscode" : " ^1.64.2"
23
23
},
73
73
" -fpermissive" ,
74
74
" -fno-exceptions" ,
75
75
" -fno-threadsafe-statics" ,
76
+ " -ffunction-sections" ,
77
+ " -fdata-sections" ,
76
78
" -pipe"
77
79
],
78
80
"scope" : " resource" ,
84
86
"type" : " string"
85
87
},
86
88
"default" : [
87
- " -ffunction-sections" ,
88
- " -fdata-sections" ,
89
+ " -Wl,--gc-sections" ,
89
90
" -pipe"
90
91
],
91
92
"scope" : " resource" ,
247
248
"lint" : " eslint --ext .ts --fix src src" ,
248
249
"clean" : " rm -rf out dist *.vsix" ,
249
250
"unit-test" : " node out/test/unit/wrapper" ,
250
- "ui-test" : " extest setup-and-run -s .vscode-test-ui -e out/extensions -m mocha.json 'out/test/ui/**/*.test.js'" ,
251
- "test" : " yarn run unit-test && yarn run ui-test" ,
251
+ "test" : " yarn run unit-test" ,
252
252
"pretest" : " yarn run lint && rm -rf out && yarn run compile-tests" ,
253
253
"vscode:prepublish" : " rm -rf dist *.vsix && yarn run package"
254
254
},
Original file line number Diff line number Diff line change 1
1
import * as assert from 'assert' ;
2
2
import { promises as fs } from 'fs' ;
3
3
import { propagateSettings } from '../../main/actions/Propagator' ;
4
- import { getProperties , getSizeFormat } from '../../main/actions/ToolsCapabilities' ;
5
4
import { pickFolder } from '../../main/presentation/Inputs' ;
6
5
import { join } from 'path' ;
7
6
@@ -28,6 +27,8 @@ suite('Actions Test Suite', () => {
28
27
"-fpermissive" ,
29
28
"-fno-exceptions" ,
30
29
"-fno-threadsafe-statics" ,
30
+ "-ffunction-sections" ,
31
+ "-fdata-sections" ,
31
32
"-pipe"
32
33
] ) ;
33
34
} )
You can’t perform that action at this time.
0 commit comments