Commit Graph

12 Commits

Author SHA1 Message Date
omartijn
38b5cc29ab
Fetch missing dependency for crashpad on linux (#30957)
Note that this does not change the fact that crashpad is marked as
unsupported, but it makes the build work now with
`--allow-unsupported`.

The build seems to work fine if the default compiler is set to clang, it
does not build with gcc, which is probably why it's marked as
unsupported.

Co-authored-by: Martijn Otto <martijn@resolume.com>
2023-04-20 15:57:39 -07:00
Mengna Li
f904afe183
[crashpad] fix tool dependencies missing (#29555)
* fix feature tools

* update
2023-02-10 11:32:20 -08:00
reito
75381ea7fa
[gn-related-ports] Fix gn based projects build error on Windows (#29058)
* fix gn path error on windows

* add quotes

* vcpkg cmake guidelines

* Fix version database.

* Use Z_VCPKG_BACKCOMPAT_MESSAGE_LEVEL instead of WARNING

* Quotes 🤦

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2023-01-26 18:53:54 -08:00
Lova Widmark
757846afd9
[crashpad] Include common lib target in output (#28065)
Co-authored-by: Lova Widmark <lova@esportal.com>
2022-11-30 09:39:12 -08:00
João Barbosa
d8f53e80e6
[crashpad] fix linking on macOS (#26682)
* [crashpad] link libmig_output.a on macOS

* [crashpad] update to latest
2022-09-06 14:54:31 -07:00
Lily Wang
c4ac478f67
[crashpad] Install chromeos_buildflags.h (#26593)
* [crashpad] Install chromeos_buildflags.h

* x-add-version
2022-08-31 13:56:12 -07:00
Alexander Neumann
6b67ad7e48
[crashpad] use vcpkg_cmake_get_vars (#25864)
* [crashpad] use vcpkg_cmake_get_vars

* v db

* disable uwp for crashpad.

* v db
2022-07-25 14:00:13 -07:00
LilyWangLL
c379c64ff9
[crashpad] Fix can't find build/build_config.h (#25106)
* [crashpad] Fix can't find build/build_config.h

* x-add-version

* remove crashpad:x64-linux=fail form ci.baseline.txt

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-06-07 13:57:51 -07:00
Benjamin Oldenburg
ce910bb87b
[skia,crashpad,zeroc-ice,vcpkg-tool-gn] New vcpkg-tool-gn and update of several ports (#24066) 2022-04-25 15:39:10 -07: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
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
Martin Vejdarski
6d5a1a897e
[gn, crashpad] Add GN build support and crashpad port (#10505)
* [vcpkg_find_acquire_program] Add gn

* [GN] Add build system support

* [crashpad] Add new port
2020-05-11 14:58:12 -07:00