jim wang
c54f02999b
[mimalloc] Fix build error on x64-android ( #41694 )
2024-10-29 13:27:34 -07:00
Nick D'Ademo
d8e2b83a6b
[mimalloc] update to 2.1.7 ( #39650 )
...
Co-authored-by: Nick D'Ademo <dademo.n@duerr-ndt.com>
2024-07-15 13:40:01 -04:00
gerard-ryan-immersaview
6db51d86a9
[vcpkg_replace_string] warn unchanged by call ( #34719 )
...
If a call to `vcpkg_replace_string` makes no changes i.e doesn't
effectively replace a string, A warning is logged.
This should also help identify ports that no longer need these calls to
fix things in `.pc` files etc.
2024-06-19 14:07:05 -07:00
Kai Pastor
247dc608bf
[mimalloc,vcpkg-ci-mimalloc] Fix exported usage, add test port ( #37499 )
...
Resolves #37489 .
2024-03-22 16:28:56 -07:00
Kai Pastor
8e03049b8c
[mimalloc] Fix android, clarify usage ( #35713 )
2023-12-18 13:21:13 -08:00
Jia Yue Hua
979ce0daec
[mimalloc] update to 2.1.2 ( #34816 )
...
* [mimalloc] update to 2.1.2
* [mimalloc] update to 2.1.2
2023-10-31 11:56:49 -07:00
JonLiu1993
93e173a0d7
[mimalloc] update to 2.1.1 to build failure ( #30710 )
...
* [mimalloc] update to latest version 2.1.1
* update version
* remove vcpkg_copy_pdbs()
* update version
* revert function
* update version
2023-04-09 22:05:07 -07:00
chausner
89248afb74
[mimalloc] Update to 2.0.9 ( #29084 )
...
* Update mimalloc to 2.0.9
* Update CI baseline
* Update patch
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
2023-01-23 15:59:44 -08:00
autoantwort
4dbc2e3403
[mimalloc] no absolute paths ( #27880 )
2022-11-17 23:27:14 -08:00
Arsen Tufankjian
f1d5c51f17
[mimalloc] Allowing arm64 builds ( #25265 )
...
* Updating port to just upgrade mimalloc to v2.0.7 which fixes arm64 on windows
* Updating version
* Adding hash. Oops
* Updating version
* Updating supports field
* Updating version
2022-11-11 09:17:16 -08:00
Clayton Wheeler
39420a74dd
[mimalloc] build for ARM Linux, Mac ( #27041 )
2022-09-30 14:32:47 -07:00
chausner
e3f3206363
[mimalloc] Update to 2.0.6 ( #24165 )
...
* Update mimalloc to 2.0.6
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
2022-04-18 16:41:49 -07:00
Rémy Tassoux
9b7e03938d
[mimalloc] Update the CMake configuration options ( #23802 )
...
* [mimalloc] Portfile configuration fixes and improvements
* [mimalloc] Update version files
2022-03-28 13:43:39 -07:00
Rémy Tassoux
5962cf5a3b
[mimalloc] Update to 2.0.5 ( #23264 )
...
* [mimalloc] Update to 2.0.5
* [mimalloc] Update version files
* [mimalloc] Fix dll install path
* [mimalloc] Update version files
2022-03-07 11:42:23 -08:00
Billy O'Neal
c9e786d81a
[many ports] remove remaining vcpkg_fail_port_install calls. ( #22770 )
...
* Bulk remove vcpkg_fail_port_install calls.
Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install",
In support of https://github.com/microsoft/vcpkg/pull/21502
* Update version database.
* Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728
* Repair version database.
2022-01-25 10:31:15 -08:00
wangao
363892de9c
fix(ports): use lib/cmake/mimalloc config path in mimalloc port file ( #22238 )
...
* fix(ports): use lib/cmake/mimalloc config path in vcpkg_cmake_config_fixup in mimalloc portfile.cmake
* chore(versions): update mimalloc port version
* chore(versions): update versions database
2021-12-29 11:29:15 -08:00
Rémy Tassoux
b6c1682e46
[mimalloc] Update to 2.0.3 ( #21844 )
...
* [mimalloc] Update to 2.0.3
* [mimalloc] Update version files
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2021-12-06 21:10:27 -08:00
Rémy Tassoux
fa55dc6197
[mimalloc] Update to 2.0.2 ( #20680 )
...
* [mimalloc] Update to 2.0.2
* [mimalloc] Update version files
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2021-10-13 14:48:09 -07:00
JonLiu1993
6edc46f862
[mimalloc] update to v1.7.2 ( #20188 )
...
* [mimalloc] update to v1.7.2
* update version
* update suggestion review
* update version
* update patch EOF
* update version
2021-09-17 08:05:23 -07:00
Billy O'Neal
b295670e4b
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 01:24:04 -07:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00