Skip to content

Commit b9046d9

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20240725.3 (#9477)
[main] Update dependencies from dotnet/arcade
1 parent 849700a commit b9046d9

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -161,25 +161,25 @@
161161
</Dependency>
162162
</ProductDependencies>
163163
<ToolsetDependencies>
164-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24374.3">
164+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24375.3">
165165
<Uri>https://github.com/dotnet/arcade</Uri>
166-
<Sha>c45d41114722ff910cde462f4be003b1d7fde58f</Sha>
166+
<Sha>3e18bd4f62388b829d0b9dcd1ee131431674aa5f</Sha>
167167
</Dependency>
168-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24374.3">
168+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24375.3">
169169
<Uri>https://github.com/dotnet/arcade</Uri>
170-
<Sha>c45d41114722ff910cde462f4be003b1d7fde58f</Sha>
170+
<Sha>3e18bd4f62388b829d0b9dcd1ee131431674aa5f</Sha>
171171
</Dependency>
172-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24374.3">
172+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24375.3">
173173
<Uri>https://github.com/dotnet/arcade</Uri>
174-
<Sha>c45d41114722ff910cde462f4be003b1d7fde58f</Sha>
174+
<Sha>3e18bd4f62388b829d0b9dcd1ee131431674aa5f</Sha>
175175
</Dependency>
176176
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="9.0.0-beta.24053.1">
177177
<Uri>https://github.com/dotnet/arcade</Uri>
178178
<Sha>f4e11a15c7b8a949d4a366e792a9843ff6e88cd5</Sha>
179179
</Dependency>
180-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24374.3">
180+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24375.3">
181181
<Uri>https://github.com/dotnet/arcade</Uri>
182-
<Sha>c45d41114722ff910cde462f4be003b1d7fde58f</Sha>
182+
<Sha>3e18bd4f62388b829d0b9dcd1ee131431674aa5f</Sha>
183183
</Dependency>
184184
<Dependency Name="Microsoft.SourceLink.AzureRepos.Git" Version="8.0.0-beta.23409.2">
185185
<Uri>https://github.com/dotnet/sourcelink</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<!-- Packages that come from https://github.com/dotnet/arcade -->
5151
<PropertyGroup>
5252
<MicrosoftDotNetApiCompatVersion>9.0.0-beta.24053.1</MicrosoftDotNetApiCompatVersion>
53-
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.24374.3</MicrosoftDotNetCodeAnalysisPackageVersion>
53+
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.24375.3</MicrosoftDotNetCodeAnalysisPackageVersion>
5454
</PropertyGroup>
5555
<!-- Sourcelink -->
5656
<PropertyGroup>

eng/common/cross/build-rootfs.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -605,34 +605,34 @@ elif [[ "$__CodeName" == "illumos" ]]; then
605605
fi
606606
echo "Building binutils. Please wait.."
607607
if [[ "$__hasWget" == 1 ]]; then
608-
wget -O- https://ftp.gnu.org/gnu/binutils/binutils-2.33.1.tar.bz2 | tar -xjf -
608+
wget -O- https://ftp.gnu.org/gnu/binutils/binutils-2.42.tar.xz | tar -xJf -
609609
else
610-
curl -SL https://ftp.gnu.org/gnu/binutils/binutils-2.33.1.tar.bz2 | tar -xjf -
610+
curl -SL https://ftp.gnu.org/gnu/binutils/binutils-2.42.tar.xz | tar -xJf -
611611
fi
612612
mkdir build-binutils && cd build-binutils
613-
../binutils-2.33.1/configure --prefix="$__RootfsDir" --target="${__illumosArch}-sun-solaris2.10" --program-prefix="${__illumosArch}-illumos-" --with-sysroot="$__RootfsDir"
613+
../binutils-2.42/configure --prefix="$__RootfsDir" --target="${__illumosArch}-sun-solaris2.11" --program-prefix="${__illumosArch}-illumos-" --with-sysroot="$__RootfsDir"
614614
make -j "$JOBS" && make install && cd ..
615615
echo "Building gcc. Please wait.."
616616
if [[ "$__hasWget" == 1 ]]; then
617-
wget -O- https://ftp.gnu.org/gnu/gcc/gcc-8.4.0/gcc-8.4.0.tar.xz | tar -xJf -
617+
wget -O- https://ftp.gnu.org/gnu/gcc/gcc-13.3.0/gcc-13.3.0.tar.xz | tar -xJf -
618618
else
619-
curl -SL https://ftp.gnu.org/gnu/gcc/gcc-8.4.0/gcc-8.4.0.tar.xz | tar -xJf -
619+
curl -SL https://ftp.gnu.org/gnu/gcc/gcc-13.3.0/gcc-13.3.0.tar.xz | tar -xJf -
620620
fi
621621
CFLAGS="-fPIC"
622622
CXXFLAGS="-fPIC"
623623
CXXFLAGS_FOR_TARGET="-fPIC"
624624
CFLAGS_FOR_TARGET="-fPIC"
625625
export CFLAGS CXXFLAGS CXXFLAGS_FOR_TARGET CFLAGS_FOR_TARGET
626626
mkdir build-gcc && cd build-gcc
627-
../gcc-8.4.0/configure --prefix="$__RootfsDir" --target="${__illumosArch}-sun-solaris2.10" --program-prefix="${__illumosArch}-illumos-" --with-sysroot="$__RootfsDir" --with-gnu-as \
627+
../gcc-13.3.0/configure --prefix="$__RootfsDir" --target="${__illumosArch}-sun-solaris2.11" --program-prefix="${__illumosArch}-illumos-" --with-sysroot="$__RootfsDir" --with-gnu-as \
628628
--with-gnu-ld --disable-nls --disable-libgomp --disable-libquadmath --disable-libssp --disable-libvtv --disable-libcilkrts --disable-libada --disable-libsanitizer \
629629
--disable-libquadmath-support --disable-shared --enable-tls
630630
make -j "$JOBS" && make install && cd ..
631631
BaseUrl=https://pkgsrc.smartos.org
632632
if [[ "$__UseMirror" == 1 ]]; then
633633
BaseUrl=https://pkgsrc.smartos.skylime.net
634634
fi
635-
BaseUrl="$BaseUrl/packages/SmartOS/trunk/${__illumosArch}/All"
635+
BaseUrl="$BaseUrl/packages/SmartOS/2019Q4/${__illumosArch}/All"
636636
echo "Downloading manifest"
637637
if [[ "$__hasWget" == 1 ]]; then
638638
wget "$BaseUrl"

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
}
1313
},
1414
"msbuild-sdks": {
15-
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24374.3",
16-
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24374.3"
15+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24375.3",
16+
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24375.3"
1717
},
1818
"sdk": {
1919
"version": "9.0.100-preview.5.24307.3"

0 commit comments

Comments
 (0)