Skip to content

Commit

Permalink
[pixman] add mips64 support (#26269)
Browse files Browse the repository at this point in the history
* [pixman]add mips64 support

* [pixman]update port version

* [pixman]update version database

* format code style.

* update version database

Co-authored-by: Jamlys Lee <jamlys_lee@163.com>
  • Loading branch information
Jamlys and Jamlys Lee committed Aug 12, 2022
1 parent 75e08dc commit 73ec570
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
16 changes: 10 additions & 6 deletions ports/pixman/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,16 @@ elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
-Dsse2=enabled
-Dssse3=enabled)
elseif(VCPKG_TARGET_ARCHITECTURE MATCHES "arm")
list(APPEND OPTIONS
#-Darm-simd=enabled does not work with arm64-windows
-Dmmx=disabled
-Dsse2=disabled
-Dssse3=disabled
)
list(APPEND OPTIONS
#-Darm-simd=enabled does not work with arm64-windows
-Dmmx=disabled
-Dsse2=disabled
-Dssse3=disabled)
elseif(VCPKG_TARGET_ARCHITECTURE MATCHES "mips")
list(APPEND OPTIONS
-Dmmx=disabled
-Dsse2=disabled
-Dssse3=disabled)
endif()

set(PIXMAN_VERSION 0.40.0)
Expand Down
2 changes: 1 addition & 1 deletion ports/pixman/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pixman",
"version": "0.40.0",
"port-version": 2,
"port-version": 3,
"description": "Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization.",
"homepage": "https://www.cairographics.org/releases",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5530,7 +5530,7 @@
},
"pixman": {
"baseline": "0.40.0",
"port-version": 2
"port-version": 3
},
"pkgconf": {
"baseline": "1.8.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/p-/pixman.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "f6930f7300af86c20679b38f53bbdbc1a1310eed",
"version": "0.40.0",
"port-version": 3
},
{
"git-tree": "85d5aa0bbd91cff8853d0767bc9dc73e97156291",
"version": "0.40.0",
Expand Down

0 comments on commit 73ec570

Please sign in to comment.