-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: set -O3
and tune WinCE in CI, fix getpart
, vtls_scache
fallouts
#16476
Closed
Conversation
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
-O
in CI for WinCE
This comment was marked as resolved.
This comment was marked as resolved.
0da8e9f
to
9c50599
Compare
-O
in CI for WinCE-O3
for WinCE, fix getpart
uninitialized variable
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 25, 2025
Sync cutoff version for `-ftree-vrp` with autotools, which enables it for gcc 4.3+ (cmake builds enabled it for 5.0+, before this patch). Cherry-picked from curl#16476
-O3
for WinCE, fix getpart
uninitialized variable-O3
for WinCE in CI, fix getpart
uninitialized variable
9c50599
to
564b764
Compare
-O3
for WinCE in CI, fix getpart
uninitialized variable-O3
for WinCE in CI, fix getpart
uninit var, scache
aliasing rule
-O3
for WinCE in CI, fix getpart
uninit var, scache
aliasing rule-O3
for WinCE in CI, fix fallouts in getpart
, vtls_scache
4f3a510
to
755c222
Compare
-O3
for WinCE in CI, fix fallouts in getpart
, vtls_scache
-O3
for WinCE in CI, fix getpart
, vtls_scache
fallouts, tune CI
-O3
for WinCE in CI, fix getpart
, vtls_scache
fallouts, tune CI-O3
and tune WinCE in CI, fix getpart
, vtls_scache
fallouts
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
GHA/windows/WinCE:
-O3 -DNDEBUG
C flags manually for the CMake mingw32ce build.CMake doesn't recognize the platform and fails to add them. To match
autotools (using
-O2
), and hit similar compiler warnings.Follow-up to 2a292c3 build: add Windows CE / CeGCC support, with CI jobs #15975
tests: fix potentially uninitialized value in
readline()
ingetpart.c
. Detected by gcc 4.4.0-O2
(Windows CE) jobs:Ref: https://github.com/curl/curl/actions/runs/13522595237/job/37785147505?pr=16476#step:11:25
Follow-up to 592880a
vtls_scache: rework returning pointer to avoid compiler warning seen
with
-O3
gcc 4.4.0 builds (Windows CE/schannel):Ref: https://github.com/curl/curl/actions/runs/13523868335/job/37789610845#step:9:25
Follow-up to fa0ccd9 TLS session ticket caching reworked #15774