File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ The panel will have the ability to install the tools on the most popular platfor
18
18
19
19
### Changelog
20
20
21
+ - 0.4.0
22
+ - Fixed installation issues with MacOS Sequoia.
23
+ - Bumping gcc to 15.2.0
24
+ - Bumping binutils to 2.45
25
+ - Fixed installation issues with Windows MIPS toolchain when PowerShell is the default shell.
21
26
- 0.3.9
22
27
- Fixed cube psyqo template's null pointer exception.
23
28
- Improved MacOS mips toolchain installation process.
Original file line number Diff line number Diff line change 2
2
"name" : " psx-dev" ,
3
3
"displayName" : " PSX.Dev" ,
4
4
"description" : " PlayStation 1 development made easy" ,
5
- "version" : " 0.3.9 " ,
5
+ "version" : " 0.4.0 " ,
6
6
"engines" : {
7
7
"vscode" : " ^1.75.0"
8
8
},
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ async function installToolchain() {
71
71
} else {
72
72
if ( win32MipsToolsInstalling ) return
73
73
win32MipsToolsInstalling = true
74
- await terminal . run ( 'mips ' , [ 'install ' , mipsVersion ] )
74
+ await terminal . run ( 'cmd ' , [ '/c ' , `mips install ${ mipsVersion } ` ] )
75
75
}
76
76
} catch ( error ) {
77
77
vscode . window . showErrorMessage (
@@ -306,7 +306,7 @@ async function installCMake() {
306
306
asset . browser_download_url . split ( '/' ) . pop ( )
307
307
)
308
308
await downloader . downloadFile ( asset . browser_download_url , filename )
309
- await execFile ( 'start ', [ filename ] )
309
+ await terminal . run ( 'msiexec ', [ '/i' , filename ] )
310
310
requiresReboot = true
311
311
break
312
312
case 'linux' :
Original file line number Diff line number Diff line change 1
1
# escape=`
2
2
3
- # Dockerfile to generate the Windows g++-mipsel-none-elf-14 .2.0.zip package.
3
+ # Dockerfile to generate the Windows g++-mipsel-none-elf-15 .2.0.zip package.
4
4
5
5
FROM mcr.microsoft.com/windows/servercore:ltsc2022
6
6
WORKDIR C:\w indows\t emp
@@ -80,6 +80,6 @@ RUN C:\msys64\usr\bin\bash.exe -l -c 'for t in cat cp echo mkdir rm touch which
80
80
RUN C:\m sys64\u sr\b in\b ash.exe -l -c 'cp /mingw64/bin/mingw32-make.exe /DIST/bin/make.exe'
81
81
RUN C:\m sys64\u sr\b in\b ash.exe -l -c 'cd /DIST && find . -name *.exe | while read bin ; do ldd $bin | cut -f2 -d\> | cut -f2 -d\ | grep -v /c/Windows/S | while read f ; do cp $f $(dirname $bin) ; done ; done || true'
82
82
83
- RUN C:\m sys64\u sr\b in\b ash.exe -l -c 'cd /DIST && zip /c/g++-mipsel-none-elf-14 .2.0.zip . -r'
83
+ RUN C:\m sys64\u sr\b in\b ash.exe -l -c 'cd /DIST && zip /c/g++-mipsel-none-elf-15 .2.0.zip . -r'
84
84
85
85
CMD C:\m sys64\u sr\b in\b ash.exe -l
You can’t perform that action at this time.
0 commit comments