-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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: remove openlibm #56875
Draft
inkydragon
wants to merge
13
commits into
JuliaLang:master
Choose a base branch
from
inkydragon:cyhan/remove-openlibm
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
build: remove openlibm #56875
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
621aab6
build: remove openlibm
inkydragon bcfa6b8
deps: remove openlibm
inkydragon f5700fc
stdlib: remove OpenLibm_jll
inkydragon c30973c
doc: remove openlibm
inkydragon 6db9980
ci: Only build on windows
inkydragon 2eb35c7
build: link to mingwex
inkydragon 6f431c6
build: update csl lib for mingw32-i686
inkydragon f652734
build: link to libmingw32
inkydragon 87fc9ff
deps: use libmsvcrt.a fomr i686-12.2.0 toolchain
inkydragon c43095f
deps: add note for endif
inkydragon 0ae6207
deps: use libmsvcrt from toolchain
inkydragon 4924cd1
deps: fix i686 if condition
inkydragon 4e0348c
Revert "ci: Only build on windows"
inkydragon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -170,18 +170,6 @@ | |
"copyrightText": "Copyright (c) 2007, 2008, 2009 Mutsuo Saito, Makoto Matsumoto and Hiroshima University. Copyright (c) 2011, 2002 Mutsuo Saito, Makoto Matsumoto, Hiroshima University and The University of Tokyo.", | ||
"summary": "Double precision SIMD-oriented Fast Mersenne Twister" | ||
}, | ||
{ | ||
"name": "OpenLibm", | ||
"SPDXID": "SPDXRef-OpenLibm", | ||
"downloadLocation": "git+https://github.com/JuliaMath/openlibm.git", | ||
"filesAnalyzed": false, | ||
"homepage": "https://julialang.org", | ||
"sourceInfo": "The git hash of the version in use can be found in the file deps/openlibm.version", | ||
"licenseConcluded": "MIT", | ||
"licenseDeclared": "MIT AND BSD-2-Clause-FreeBSD AND ISC", | ||
"copyrightText": "Copyright (c) 2011-14 The Julia Project. Copyright (c) 2008 Stephen L. Moshier [email protected] Copyright 1992-2011 The FreeBSD Project. All rights reserved. Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.", | ||
"summary": "High quality system independent, portable, open source libm implementation" | ||
}, | ||
{ | ||
"name": "GMP", | ||
"SPDXID": "SPDXRef-GMP", | ||
|
@@ -534,11 +522,6 @@ | |
"relationshipType": "BUILD_DEPENDENCY_OF", | ||
"relatedSpdxElement": "SPDXRef-JuliaMain" | ||
}, | ||
{ | ||
"spdxElementId": "SPDXRef-OpenLibm", | ||
"relationshipType": "BUILD_DEPENDENCY_OF", | ||
"relatedSpdxElement": "SPDXRef-JuliaMain" | ||
}, | ||
{ | ||
"spdxElementId": "SPDXRef-GMP", | ||
"relationshipType": "BUILD_DEPENDENCY_OF", | ||
|
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we want to add
libmingw32
,libmingwex
to CSL too.And if I use
libmsvcrt.a
from CSL, it failed to build.Seems there is some version mismatch.