forked from lwthiker/curl-impersonate
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix invalid NEON instructions for armv6 Raspberry Pi's (#49)
* add march * use cpu model without vfp * disable boringssl neon * use different method to disable neon * disable arm cpu test when OPENSSL_STATIC_ARMCAP is defined * tweak patch format * disable test * let macos use gpatch * try disable asm again * disable asm at cmake level * reverse logic * try soft float * target even older arm chip * try generic cpu model * Revert "try generic cpu model" This reverts commit 4892cdd. * use cpu model without float * manually tweak cpu features * Only use mcpu * Disable loop vectorization * disable more vectorization * try different vfp * try another vector disable flag * use latest zig snapshot * more vectorize flags * refactor to pass flags directly to zig * Revert "use latest zig snapshot" This reverts commit 2ad7947. * try restoring original asm behavior
- Loading branch information
Showing
3 changed files
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/bash | ||
zig cc -target $ZIG_TARGET "$@" | ||
zig cc $ZIG_FLAGS "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/bash | ||
zig c++ -target $ZIG_TARGET "$@" | ||
zig c++ $ZIG_FLAGS "$@" |