vcpkg/versions/l-/libflac.json

115 lines
2.8 KiB
JSON
Raw Normal View History

{
"versions": [
[libflac] Fix WASM build by disabling stack protector via feature (#37086) This fixes the `wasm32-emscripten` build of `libflac`, which would previously fail with <details> <summary>Linking Errors</summary> ``` [59/61] : && /opt/homebrew/Cellar/emscripten/3.1.54/libexec/emcc -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DNDEBUG -O3 -DNDEBUG microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o microbench/CMakeFiles/benchmark_residual.dir/util.c.o -o microbench/benchmark_residual.js src/libFLAC/libFLAC.a -lrt -lm <path to vcpkg>/installed/wasm32-emscripten-release/lib/libogg.a && : FAILED: microbench/benchmark_residual.js : && /opt/homebrew/Cellar/emscripten/3.1.54/libexec/emcc -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DNDEBUG -O3 -DNDEBUG microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o microbench/CMakeFiles/benchmark_residual.dir/util.c.o -o microbench/benchmark_residual.js src/libFLAC/libFLAC.a -lrt -lm <path to vcpkg>/installed/wasm32-emscripten-release/lib/libogg.a && : wasm-ld: error: microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o: undefined symbol: __stack_chk_guard wasm-ld: error: microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o: undefined symbol: __stack_chk_guard wasm-ld: error: microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o: undefined symbol: __stack_chk_fail wasm-ld: error: microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o: undefined symbol: __stack_chk_guard wasm-ld: error: microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o: undefined symbol: __stack_chk_guard wasm-ld: error: microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.o: undefined symbol: __stack_chk_fail ``` </details> The stack protector flag is [documented here](https://github.com/xiph/flac/blob/66152791d828e06321e6f92611062118562e7db0/CMakeLists.txt#L21) and is [unsupported in Emscripten](https://github.com/emscripten-core/emscripten/issues/17030). ### Checklist - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
2024-03-05 18:06:46 +08:00
{
"git-tree": "8a05fdac2efaa1a739e13289a2bec7d6d32e84a3",
"version": "1.4.3",
"port-version": 1
},
2023-10-03 11:23:53 +08:00
{
"git-tree": "b03480bcc5f27cdc9a5f51fef012f880f1b0bf8d",
"version": "1.4.3",
"port-version": 0
},
{
"git-tree": "d5f68de2a2c015247322b369a6b94052135df51a",
"version": "1.4.2",
"port-version": 0
},
{
"git-tree": "6931704180602d16a54e15759cd6c04739d40699",
"version": "1.3.4",
"port-version": 1
},
{
"git-tree": "a3dff2074f8f7a8ac9d8e9c5e78d8cae8538f3ef",
"version": "1.3.4",
"port-version": 0
},
{
"git-tree": "040c261fb123656fc61f659e887a6db0fabc275e",
"version": "1.3.3",
"port-version": 7
},
Bulk convert control files. (#19986) ``` function Convert-Control { Param($full) .\vcpkg.exe format-manifest $full $root = $full.Substring(0, $full.Length - 7) # CONTROL $new = $root + 'vcpkg.json' $content = Get-Content -Raw $new $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100 $oldVersion = $asJson['port-version'] if ($null -eq $oldVersion) { $oldVersionFull = $asJson['version-string'] Write-Host "Got version $oldVersionFull" $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$') if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) { $newFullVersion = [string]$match.Groups[1].Value $oldVersion = [int]$match.Groups[2].Value Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion" $newVersion = $oldVersion + 1 $asJson['version-string'] = $newFullVersion Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion" } else { Write-Host "No previous version for $full -- setting 1" $newVersion = 1 } } else { $newVersion = [int]$oldVersion + 1 Write-Host "New version for $full : $newVersion" } $asJson['port-version'] = $newVersion $content = ConvertTo-Json $asJson -Depth 100 Set-Content -Path $new -Value $content .\vcpkg.exe format-manifest $new } Get-ChildItem ports\CONTROL -Recurse | Foreach-Object { Convert-Control $_.FullName } git commit -am "this message" .\vcpkg.exe x-add-version -all git commit -a --amend ```
2021-09-09 16:24:04 +08:00
{
"git-tree": "682527a63d829627895d16e12759a08c26687db7",
"version-string": "1.3.3",
"port-version": 6
},
{
"git-tree": "2e34a0ed7543005386679cd20d4a6d13988c2492",
"version-string": "1.3.3",
"port-version": 5
},
{
"git-tree": "18eff4682c2e1a2f5e7b3db6cde1280b48fcf7f9",
"version-string": "1.3.3",
"port-version": 4
},
{
"git-tree": "95e9abb7bff34d0d49d037dc0c14d262573160fc",
"version-string": "1.3.3",
"port-version": 3
},
{
"git-tree": "7dd246cc52ce5a5ebd36192f999d5ad7965001ac",
"version-string": "1.3.3",
"port-version": 2
},
{
"git-tree": "8a6195f7d6328d0e754b79056455da25f75d5aaa",
"version-string": "1.3.3-1",
"port-version": 0
},
{
"git-tree": "c437f05ca049637a996059f716205112af5b7915",
"version-string": "1.3.3",
"port-version": 0
},
{
"git-tree": "b53507f76acb93ef8b1a31ae53c15fd751472437",
"version-string": "1.3.2-6",
"port-version": 0
},
{
"git-tree": "18fe3baf869af9cbb7b71435d9e0893706918941",
"version-string": "1.3.2-5",
"port-version": 0
},
{
"git-tree": "1ec2eed2bee308586113f3bcbd41f375618b889e",
"version-string": "1.3.2-4",
"port-version": 0
},
{
"git-tree": "0d94ba36b1ab5ea59e21c5be30e538dc70a55a1c",
"version-string": "1.3.2-3",
"port-version": 0
},
{
"git-tree": "db63997400752e6af84869fd85982bd0941f7b4f",
"version-string": "1.3.2-2",
"port-version": 0
},
{
"git-tree": "e5f22a2a0fc5c894b8007c63adf26c8e918f1cf7",
"version-string": "1.3.2-1",
"port-version": 0
},
{
"git-tree": "600b8d5b38ac82b981c60ffec8ee51d5fd5967ea",
"version-string": "1.3.2",
"port-version": 0
},
{
"git-tree": "75f248a016f545385854e0a6f4d9e045bac9a7d7",
"version-string": "1.3.1-1",
"port-version": 0
},
{
"git-tree": "a09a2bdbc4de9431a0b673ec378458f45ad2fcb0",
"version-string": "1.3.1",
"port-version": 0
}
]
}