-
Notifications
You must be signed in to change notification settings - Fork 104
win: add _ITERATOR_DEBUG_LEVEL=2 distro #5722
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
Open
MaxRayskiy
wants to merge
26
commits into
master
Choose a base branch
from
feature/7075_iterator-debug-level2
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.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3e293d2
win: add _ITERATOR_DEBUG_LEVEL=2 distro
MaxRayskiy ef65890
test run: build with new matrix
MaxRayskiy b5082e9
test
MaxRayskiy 8aec036
test vcpkg mirror for msys
MaxRayskiy a2a3d28
replace mirror files with vcpkg cache
MaxRayskiy a623548
Allow setting the vcpkg triplet for `generate.mk`.
adalisk-emikhaylov e55f3c2
add missing msys2 files
MaxRayskiy 96bd532
Merge branch 'mrbind-choosing-vcpkg-triplet' into feature/7075_iterat…
MaxRayskiy a455fee
use vcpkg_triplet as job-level env
MaxRayskiy ad10f20
add getopt
MaxRayskiy 3982db8
force v142 vc toolset
MaxRayskiy 677ae97
use s3 mirror for missing files
MaxRayskiy 59bbb79
test x-script for X_VCPKG_ASSET_SOURCES
MaxRayskiy f114d66
use s3 as assets provider
MaxRayskiy 4ffa831
Merge branch 'master' into feature/7075_iterator-debug-level2
MaxRayskiy a2c2ae1
use use_s3_assets-provider
MaxRayskiy 7d29560
trigger build
MaxRayskiy 8d784a4
fix typo
MaxRayskiy 8b17df6
fix s3 dest
MaxRayskiy ac6d113
use original url to fetch downloads first
MaxRayskiy bd05f4d
update arg parsing in asset-provider
MaxRayskiy d623d57
test disable python build
MaxRayskiy 0163848
skip Release build
MaxRayskiy c4e467a
skip bindings for new triplet
MaxRayskiy c84ff8f
Merge branch 'master' into feature/7075_iterator-debug-level2
Fedr c662b29
Python tests if matrix.vcpkg_triplet != 'x64-windows-meshlib-iterator…
Fedr 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -74,6 +74,14 @@ IF(MR_EMSCRIPTEN) | |
| set(MESHLIB_BUILD_MESHCONV OFF) | ||
| ENDIF() | ||
|
|
||
| # Python modules are incompatible with _ITERATOR_DEBUG_LEVEL=2 because the | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. may be check then that we are building Debug configuration, since Release configuration will not have any problems with this triplet |
||
| # vcpkg python3 port ships pre-built Release binaries (IDL=0) that cannot load | ||
| # .pyd files built against a different debug CRT (error 1114 on Windows). | ||
| IF(DEFINED VCPKG_TARGET_TRIPLET AND VCPKG_TARGET_TRIPLET MATCHES ".*iterator-debug.*") | ||
| set(MESHLIB_PYTHON_SUPPORT OFF) | ||
| set(MESHLIB_BUILD_PYTHON_MODULES OFF) | ||
| ENDIF() | ||
|
|
||
| set(MESHLIB_THIRDPARTY_DIR "${PROJECT_SOURCE_DIR}/thirdparty") | ||
|
|
||
| set(MESHLIB_THIRDPARTY_ROOT_DIR "${PROJECT_SOURCE_DIR}" CACHE PATH "Thirdparty library location") | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
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.
it seems strange, do we have Release with changed iterator debug level?