pxr-arch-dev 25.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pxr_arch_dev-25.5.1/.gitignore +79 -0
- pxr_arch_dev-25.5.1/CMakeLists.txt +96 -0
- pxr_arch_dev-25.5.1/LICENSE.txt +229 -0
- pxr_arch_dev-25.5.1/NOTICE.txt +8 -0
- pxr_arch_dev-25.5.1/PKG-INFO +42 -0
- pxr_arch_dev-25.5.1/README.md +25 -0
- pxr_arch_dev-25.5.1/cmake/pxr-arch-config.cmake.in +7 -0
- pxr_arch_dev-25.5.1/pyproject-dev.toml +35 -0
- pxr_arch_dev-25.5.1/pyproject.toml +35 -0
- pxr_arch_dev-25.5.1/src/CMakeLists.txt +112 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/align.cpp +59 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/align.h +78 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/api.h +31 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/assumptions.cpp +169 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/attributes.cpp +414 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/attributes.h +330 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/buildMode.h +30 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/daemon.cpp +113 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/daemon.h +49 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/debugger.cpp +658 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/debugger.h +94 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/defines.h +102 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/demangle.cpp +259 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/demangle.h +92 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/env.cpp +120 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/env.h +52 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/errno.cpp +75 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/errno.h +41 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/error.cpp +33 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/error.h +69 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/export.h +172 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/fileSystem.cpp +1390 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/fileSystem.h +407 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/function.cpp +242 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/function.h +36 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/functionLite.h +40 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/hash.cpp +659 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/hash.h +43 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/hints.h +69 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/initConfig.cpp +52 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/inttypes.h +44 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/library.cpp +79 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/library.h +77 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/mallocHook.cpp +337 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/mallocHook.h +139 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/math.h +135 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/pch.h +112 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/pragmas.h +263 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/regex.cpp +184 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/regex.h +62 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/stackTrace.cpp +1710 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/stackTrace.h +344 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/symbols.cpp +129 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/symbols.h +38 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/systemInfo.cpp +188 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/systemInfo.h +33 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/threads.cpp +35 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/threads.h +53 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/timing.cpp +334 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/timing.h +345 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/virtualMemory.cpp +116 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/virtualMemory.h +63 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/vsnprintf.cpp +60 -0
- pxr_arch_dev-25.5.1/src/pxr/arch/vsnprintf.h +82 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Prerequisites
|
|
2
|
+
*.d
|
|
3
|
+
|
|
4
|
+
# Compiled Object files
|
|
5
|
+
*.slo
|
|
6
|
+
*.lo
|
|
7
|
+
*.o
|
|
8
|
+
*.obj
|
|
9
|
+
|
|
10
|
+
# Precompiled Headers
|
|
11
|
+
*.gch
|
|
12
|
+
*.pch
|
|
13
|
+
|
|
14
|
+
# Compiled Dynamic libraries
|
|
15
|
+
*.so
|
|
16
|
+
*.dylib
|
|
17
|
+
*.dll
|
|
18
|
+
|
|
19
|
+
# Fortran module files
|
|
20
|
+
*.mod
|
|
21
|
+
*.smod
|
|
22
|
+
|
|
23
|
+
# Compiled Static libraries
|
|
24
|
+
*.lai
|
|
25
|
+
*.la
|
|
26
|
+
*.a
|
|
27
|
+
*.lib
|
|
28
|
+
|
|
29
|
+
# Executables
|
|
30
|
+
*.exe
|
|
31
|
+
*.out
|
|
32
|
+
*.app
|
|
33
|
+
|
|
34
|
+
# Cache
|
|
35
|
+
Thumbs.db
|
|
36
|
+
.DS_Store
|
|
37
|
+
.AppleDouble
|
|
38
|
+
|
|
39
|
+
# Development
|
|
40
|
+
build/
|
|
41
|
+
.vscode
|
|
42
|
+
.project
|
|
43
|
+
.settings
|
|
44
|
+
.idea/
|
|
45
|
+
.history/
|
|
46
|
+
|
|
47
|
+
# CMake
|
|
48
|
+
cmake-build-*/
|
|
49
|
+
|
|
50
|
+
# Python Distribution / packaging
|
|
51
|
+
.Python
|
|
52
|
+
build/
|
|
53
|
+
develop-eggs/
|
|
54
|
+
dist/
|
|
55
|
+
downloads/
|
|
56
|
+
eggs/
|
|
57
|
+
.eggs/
|
|
58
|
+
lib/
|
|
59
|
+
lib64/
|
|
60
|
+
parts/
|
|
61
|
+
sdist/
|
|
62
|
+
var/
|
|
63
|
+
wheels/
|
|
64
|
+
share/python-wheels/
|
|
65
|
+
*.egg-info/
|
|
66
|
+
.installed.cfg
|
|
67
|
+
*.egg
|
|
68
|
+
MANIFEST
|
|
69
|
+
_skbuild/
|
|
70
|
+
wheelhouse/
|
|
71
|
+
|
|
72
|
+
# Environments
|
|
73
|
+
.env
|
|
74
|
+
.venv
|
|
75
|
+
env/
|
|
76
|
+
venv/
|
|
77
|
+
ENV/
|
|
78
|
+
env.bak/
|
|
79
|
+
venv.bak/
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.21...3.31)
|
|
2
|
+
|
|
3
|
+
# Default build type value.
|
|
4
|
+
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the build type")
|
|
5
|
+
|
|
6
|
+
project(pxr-arch
|
|
7
|
+
VERSION 0.25.5
|
|
8
|
+
HOMEPAGE_URL "https://github.com/untwine/pxr-arch"
|
|
9
|
+
LANGUAGES C CXX
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
math(EXPR PXR_VERSION
|
|
13
|
+
"${PROJECT_VERSION_MAJOR} * 10000 + ${PROJECT_VERSION_MINOR} * 100 + ${PROJECT_VERSION_PATCH}"
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
if (NOT "${CMAKE_CXX_STANDARD}")
|
|
17
|
+
set(CMAKE_CXX_STANDARD 17 CACHE STRING "Default C++ standard")
|
|
18
|
+
endif()
|
|
19
|
+
|
|
20
|
+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
21
|
+
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
22
|
+
|
|
23
|
+
# Default options.
|
|
24
|
+
option(BUILD_TESTS "Build tests" ON)
|
|
25
|
+
option(BUILD_DOCS "Build documentation" ON)
|
|
26
|
+
option(BUILD_SHARED_LIBS "Build Shared Library" ON)
|
|
27
|
+
option(ENABLE_PRECOMPILED_HEADERS "Enable precompiled headers." OFF)
|
|
28
|
+
|
|
29
|
+
if (NOT BUILD_SHARED_LIBS)
|
|
30
|
+
add_compile_definitions(PXR_STATIC)
|
|
31
|
+
endif()
|
|
32
|
+
|
|
33
|
+
include(GNUInstallDirs)
|
|
34
|
+
|
|
35
|
+
if (WIN32)
|
|
36
|
+
# Prevent WinDef.h from defining min/max macros.
|
|
37
|
+
add_definitions(-DNOMINMAX)
|
|
38
|
+
|
|
39
|
+
# Exclude unnecessary Windows APIs for faster builds and fewer macro conflicts.
|
|
40
|
+
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
|
41
|
+
|
|
42
|
+
# Disable /Zc:inline in VS 2019+ to retain "arch_ctor_<name>" symbols in release.
|
|
43
|
+
# https://developercommunity.visualstudio.com/t/914943
|
|
44
|
+
if (MSVC_VERSION GREATER_EQUAL 1920)
|
|
45
|
+
set(CMAKE_CXX_FLAGS "/Zc:inline- ${CMAKE_CXX_FLAGS}")
|
|
46
|
+
else()
|
|
47
|
+
set(CMAKE_CXX_FLAGS "/Zc:inline ${CMAKE_CXX_FLAGS}")
|
|
48
|
+
endif()
|
|
49
|
+
endif()
|
|
50
|
+
|
|
51
|
+
# Update build type from environment for CMake < 3.22
|
|
52
|
+
if (DEFINED ENV{CMAKE_BUILD_TYPE})
|
|
53
|
+
set(CMAKE_BUILD_TYPE $ENV{CMAKE_BUILD_TYPE}
|
|
54
|
+
CACHE STRING "Specifies the build type" FORCE)
|
|
55
|
+
endif()
|
|
56
|
+
|
|
57
|
+
find_package(Threads REQUIRED)
|
|
58
|
+
|
|
59
|
+
add_subdirectory(src)
|
|
60
|
+
|
|
61
|
+
# Build and setup tests if required.
|
|
62
|
+
if (BUILD_TESTS)
|
|
63
|
+
find_package(GTest REQUIRED)
|
|
64
|
+
include(GoogleTest)
|
|
65
|
+
|
|
66
|
+
enable_testing()
|
|
67
|
+
add_subdirectory(test)
|
|
68
|
+
endif()
|
|
69
|
+
|
|
70
|
+
# Build documentation if required.
|
|
71
|
+
if (BUILD_DOCS)
|
|
72
|
+
find_package(Sphinx 1.8.6 REQUIRED)
|
|
73
|
+
find_package(Doxygen 1.8.5 REQUIRED)
|
|
74
|
+
|
|
75
|
+
add_subdirectory(doc)
|
|
76
|
+
endif()
|
|
77
|
+
|
|
78
|
+
include(CMakePackageConfigHelpers)
|
|
79
|
+
|
|
80
|
+
configure_package_config_file(
|
|
81
|
+
"cmake/pxr-arch-config.cmake.in"
|
|
82
|
+
"${CMAKE_CURRENT_BINARY_DIR}/pxr-arch-config.cmake"
|
|
83
|
+
INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/cmake/pxr-arch
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
write_basic_package_version_file(
|
|
87
|
+
"pxr-arch-config-version.cmake"
|
|
88
|
+
COMPATIBILITY AnyNewerVersion
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
install(
|
|
92
|
+
FILES
|
|
93
|
+
"${CMAKE_CURRENT_BINARY_DIR}/pxr-arch-config.cmake"
|
|
94
|
+
"${CMAKE_CURRENT_BINARY_DIR}/pxr-arch-config-version.cmake"
|
|
95
|
+
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/cmake/pxr-arch
|
|
96
|
+
)
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
============================================================
|
|
2
|
+
OpenUSD
|
|
3
|
+
============================================================
|
|
4
|
+
|
|
5
|
+
Note: The Tomorrow Open Source Technology License 1.0 differs from the
|
|
6
|
+
original Apache License 2.0 in the following manner. Section 6 ("Trademarks")
|
|
7
|
+
is different.
|
|
8
|
+
|
|
9
|
+
TOMORROW OPEN SOURCE TECHNOLOGY LICENSE 1.0
|
|
10
|
+
|
|
11
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
12
|
+
|
|
13
|
+
1. Definitions.
|
|
14
|
+
|
|
15
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
16
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
17
|
+
|
|
18
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
19
|
+
the copyright owner that is granting the License.
|
|
20
|
+
|
|
21
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
22
|
+
other entities that control, are controlled by, or are under common
|
|
23
|
+
control with that entity. For the purposes of this definition,
|
|
24
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
25
|
+
direction or management of such entity, whether by contract or
|
|
26
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
27
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
28
|
+
|
|
29
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
30
|
+
exercising permissions granted by this License.
|
|
31
|
+
|
|
32
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
33
|
+
including but not limited to software source code, documentation
|
|
34
|
+
source, and configuration files.
|
|
35
|
+
|
|
36
|
+
"Object" form shall mean any form resulting from mechanical
|
|
37
|
+
transformation or translation of a Source form, including but
|
|
38
|
+
not limited to compiled object code, generated documentation,
|
|
39
|
+
and conversions to other media types.
|
|
40
|
+
|
|
41
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
42
|
+
Object form, made available under the License, as indicated by a
|
|
43
|
+
copyright notice that is included in or attached to the work
|
|
44
|
+
(an example is provided in the Appendix below).
|
|
45
|
+
|
|
46
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
47
|
+
form, that is based on (or derived from) the Work and for which the
|
|
48
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
49
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
50
|
+
of this License, Derivative Works shall not include works that remain
|
|
51
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
52
|
+
the Work and Derivative Works thereof.
|
|
53
|
+
|
|
54
|
+
"Contribution" shall mean any work of authorship, including
|
|
55
|
+
the original version of the Work and any modifications or additions
|
|
56
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
57
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
58
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
59
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
60
|
+
means any form of electronic, verbal, or written communication sent
|
|
61
|
+
to the Licensor or its representatives, including but not limited to
|
|
62
|
+
communication on electronic mailing lists, source code control systems,
|
|
63
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
64
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
65
|
+
excluding communication that is conspicuously marked or otherwise
|
|
66
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
67
|
+
|
|
68
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
69
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
70
|
+
subsequently incorporated within the Work.
|
|
71
|
+
|
|
72
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
73
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
74
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
75
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
76
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
77
|
+
Work and such Derivative Works in Source or Object form.
|
|
78
|
+
|
|
79
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
80
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
81
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
82
|
+
(except as stated in this section) patent license to make, have made,
|
|
83
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
84
|
+
where such license applies only to those patent claims licensable
|
|
85
|
+
by such Contributor that are necessarily infringed by their
|
|
86
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
87
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
88
|
+
institute patent litigation against any entity (including a
|
|
89
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
90
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
91
|
+
or contributory patent infringement, then any patent licenses
|
|
92
|
+
granted to You under this License for that Work shall terminate
|
|
93
|
+
as of the date such litigation is filed.
|
|
94
|
+
|
|
95
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
96
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
97
|
+
modifications, and in Source or Object form, provided that You
|
|
98
|
+
meet the following conditions:
|
|
99
|
+
|
|
100
|
+
(a) You must give any other recipients of the Work or
|
|
101
|
+
Derivative Works a copy of this License; and
|
|
102
|
+
|
|
103
|
+
(b) You must cause any modified files to carry prominent notices
|
|
104
|
+
stating that You changed the files; and
|
|
105
|
+
|
|
106
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
107
|
+
that You distribute, all copyright, patent, trademark, and
|
|
108
|
+
attribution notices from the Source form of the Work,
|
|
109
|
+
excluding those notices that do not pertain to any part of
|
|
110
|
+
the Derivative Works; and
|
|
111
|
+
|
|
112
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
113
|
+
distribution, then any Derivative Works that You distribute must
|
|
114
|
+
include a readable copy of the attribution notices contained
|
|
115
|
+
within such NOTICE file, excluding those notices that do not
|
|
116
|
+
pertain to any part of the Derivative Works, in at least one
|
|
117
|
+
of the following places: within a NOTICE text file distributed
|
|
118
|
+
as part of the Derivative Works; within the Source form or
|
|
119
|
+
documentation, if provided along with the Derivative Works; or,
|
|
120
|
+
within a display generated by the Derivative Works, if and
|
|
121
|
+
wherever such third-party notices normally appear. The contents
|
|
122
|
+
of the NOTICE file are for informational purposes only and
|
|
123
|
+
do not modify the License. You may add Your own attribution
|
|
124
|
+
notices within Derivative Works that You distribute, alongside
|
|
125
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
126
|
+
that such additional attribution notices cannot be construed
|
|
127
|
+
as modifying the License.
|
|
128
|
+
|
|
129
|
+
You may add Your own copyright statement to Your modifications and
|
|
130
|
+
may provide additional or different license terms and conditions
|
|
131
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
132
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
133
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
134
|
+
the conditions stated in this License.
|
|
135
|
+
|
|
136
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
137
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
138
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
139
|
+
this License, without any additional terms or conditions.
|
|
140
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
141
|
+
the terms of any separate license agreement you may have executed
|
|
142
|
+
with Licensor regarding such Contributions.
|
|
143
|
+
|
|
144
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
145
|
+
names, trademarks, service marks, or product names of the Licensor
|
|
146
|
+
and its affiliates, except as required to comply with Section 4(c) of
|
|
147
|
+
the License and to reproduce the content of the NOTICE file.
|
|
148
|
+
|
|
149
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
150
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
151
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
152
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
153
|
+
implied, including, without limitation, any warranties or conditions
|
|
154
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
155
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
156
|
+
appropriateness of using or redistributing the Work and assume any
|
|
157
|
+
risks associated with Your exercise of permissions under this License.
|
|
158
|
+
|
|
159
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
160
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
161
|
+
unless required by applicable law (such as deliberate and grossly
|
|
162
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
163
|
+
liable to You for damages, including any direct, indirect, special,
|
|
164
|
+
incidental, or consequential damages of any character arising as a
|
|
165
|
+
result of this License or out of the use or inability to use the
|
|
166
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
167
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
168
|
+
other commercial damages or losses), even if such Contributor
|
|
169
|
+
has been advised of the possibility of such damages.
|
|
170
|
+
|
|
171
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
172
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
173
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
174
|
+
or other liability obligations and/or rights consistent with this
|
|
175
|
+
License. However, in accepting such obligations, You may act only
|
|
176
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
177
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
178
|
+
defend, and hold each Contributor harmless for any liability
|
|
179
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
180
|
+
of your accepting any such warranty or additional liability.
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
============================================================
|
|
184
|
+
Apple Technical Q&A QA1361 - Detecting the Debugger
|
|
185
|
+
https://developer.apple.com/library/content/qa/qa1361/_index.html
|
|
186
|
+
============================================================
|
|
187
|
+
|
|
188
|
+
Sample code project: Detecting the Debugger
|
|
189
|
+
Version: 1.0
|
|
190
|
+
|
|
191
|
+
Abstract: Shows how to determine if code is being run under the debugger.
|
|
192
|
+
|
|
193
|
+
IMPORTANT: This Apple software is supplied to you by Apple
|
|
194
|
+
Inc. ("Apple") in consideration of your agreement to the following
|
|
195
|
+
terms, and your use, installation, modification or redistribution of
|
|
196
|
+
this Apple software constitutes acceptance of these terms. If you do
|
|
197
|
+
not agree with these terms, please do not use, install, modify or
|
|
198
|
+
redistribute this Apple software.
|
|
199
|
+
|
|
200
|
+
In consideration of your agreement to abide by the following terms, and
|
|
201
|
+
subject to these terms, Apple grants you a personal, non-exclusive
|
|
202
|
+
license, under Apple's copyrights in this original Apple software (the
|
|
203
|
+
"Apple Software"), to use, reproduce, modify and redistribute the Apple
|
|
204
|
+
Software, with or without modifications, in source and/or binary forms;
|
|
205
|
+
provided that if you redistribute the Apple Software in its entirety and
|
|
206
|
+
without modifications, you must retain this notice and the following
|
|
207
|
+
text and disclaimers in all such redistributions of the Apple Software.
|
|
208
|
+
Neither the name, trademarks, service marks or logos of Apple Inc. may
|
|
209
|
+
be used to endorse or promote products derived from the Apple Software
|
|
210
|
+
without specific prior written permission from Apple. Except as
|
|
211
|
+
expressly stated in this notice, no other rights or licenses, express or
|
|
212
|
+
implied, are granted by Apple herein, including but not limited to any
|
|
213
|
+
patent rights that may be infringed by your derivative works or by other
|
|
214
|
+
works in which the Apple Software may be incorporated.
|
|
215
|
+
|
|
216
|
+
The Apple Software is provided by Apple on an "AS IS" basis. APPLE
|
|
217
|
+
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
|
|
218
|
+
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
|
|
219
|
+
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
|
|
220
|
+
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
|
|
221
|
+
|
|
222
|
+
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
|
|
223
|
+
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
224
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
225
|
+
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
|
|
226
|
+
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
|
|
227
|
+
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
|
|
228
|
+
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
|
|
229
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pxr-arch-dev
|
|
3
|
+
Version: 25.5.1
|
|
4
|
+
Summary: C++ headers and CMake config for developing with pxr-arch
|
|
5
|
+
Keywords: pixar,open-usd,dev
|
|
6
|
+
License-File: LICENSE.txt
|
|
7
|
+
License-File: NOTICE.txt
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
11
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
12
|
+
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
|
|
13
|
+
Project-URL: Repository, https://github.com/untwine/pxr-arch
|
|
14
|
+
Project-URL: Documentation, https://untwine.github.io/pxr-arch/
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Pixar Arch
|
|
19
|
+
|
|
20
|
+
[](https://pypi.python.org/pypi/pxr-arch)
|
|
21
|
+
[](https://cmake.org)
|
|
22
|
+
[](https://github.com/untwine/pxr-arch/actions/workflows/linux.yml)
|
|
23
|
+
[](https://github.com/untwine/pxr-arch/actions/workflows/macos.yml)
|
|
24
|
+
[](https://github.com/untwine/pxr-arch/actions/workflows/windows.yml)
|
|
25
|
+
[](https://github.com/untwine/pxr-arch/blob/main/LICENSE.txt)
|
|
26
|
+
|
|
27
|
+
Architecture-dependent code used in OpenUSD.
|
|
28
|
+
|
|
29
|
+
This repository is a decoupled version of the "arch" library from the
|
|
30
|
+
[OpenUSD](https://graphics.pixar.com/usd/release/index.html) library, created
|
|
31
|
+
by Pixar.
|
|
32
|
+
|
|
33
|
+
It is regularly rebased over the "release" branch of the original
|
|
34
|
+
[repository](https://github.com/PixarAnimationStudios/OpenUSD) to provide
|
|
35
|
+
explicit divergence information from the latest updates and is currently
|
|
36
|
+
synchronized with
|
|
37
|
+
[v25.05.01](https://github.com/PixarAnimationStudios/OpenUSD/releases/tag/v25.05.01).
|
|
38
|
+
|
|
39
|
+
## Documentation
|
|
40
|
+
|
|
41
|
+
Full documentation, including installation and setup guides, can be found at
|
|
42
|
+
https://untwine.github.io/pxr-arch/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Pixar Arch
|
|
2
|
+
|
|
3
|
+
[](https://pypi.python.org/pypi/pxr-arch)
|
|
4
|
+
[](https://cmake.org)
|
|
5
|
+
[](https://github.com/untwine/pxr-arch/actions/workflows/linux.yml)
|
|
6
|
+
[](https://github.com/untwine/pxr-arch/actions/workflows/macos.yml)
|
|
7
|
+
[](https://github.com/untwine/pxr-arch/actions/workflows/windows.yml)
|
|
8
|
+
[](https://github.com/untwine/pxr-arch/blob/main/LICENSE.txt)
|
|
9
|
+
|
|
10
|
+
Architecture-dependent code used in OpenUSD.
|
|
11
|
+
|
|
12
|
+
This repository is a decoupled version of the "arch" library from the
|
|
13
|
+
[OpenUSD](https://graphics.pixar.com/usd/release/index.html) library, created
|
|
14
|
+
by Pixar.
|
|
15
|
+
|
|
16
|
+
It is regularly rebased over the "release" branch of the original
|
|
17
|
+
[repository](https://github.com/PixarAnimationStudios/OpenUSD) to provide
|
|
18
|
+
explicit divergence information from the latest updates and is currently
|
|
19
|
+
synchronized with
|
|
20
|
+
[v25.05.01](https://github.com/PixarAnimationStudios/OpenUSD/releases/tag/v25.05.01).
|
|
21
|
+
|
|
22
|
+
## Documentation
|
|
23
|
+
|
|
24
|
+
Full documentation, including installation and setup guides, can be found at
|
|
25
|
+
https://untwine.github.io/pxr-arch/
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["scikit-build-core"]
|
|
3
|
+
build-backend = "scikit_build_core.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pxr-arch-dev"
|
|
7
|
+
version = "25.5.1"
|
|
8
|
+
description = "C++ headers and CMake config for developing with pxr-arch"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license-files = ["LICENSE.txt", "NOTICE.txt"]
|
|
12
|
+
keywords = ["pixar", "open-usd", "dev"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: POSIX :: Linux",
|
|
17
|
+
"Operating System :: MacOS :: MacOS X",
|
|
18
|
+
"Operating System :: Microsoft :: Windows :: Windows 10",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Repository = "https://github.com/untwine/pxr-arch"
|
|
23
|
+
Documentation = "https://untwine.github.io/pxr-arch/"
|
|
24
|
+
|
|
25
|
+
[tool.scikit-build]
|
|
26
|
+
cmake.version = ">=3.21,<4"
|
|
27
|
+
cmake.args = [
|
|
28
|
+
"-DBUILD_TESTS=OFF",
|
|
29
|
+
"-DBUILD_DOCS=OFF",
|
|
30
|
+
"-DBUILD_SHARED_LIBS=ON",
|
|
31
|
+
"-DCMAKE_INSTALL_LIBDIR=pxr-arch/lib",
|
|
32
|
+
"-DCMAKE_INSTALL_INCLUDEDIR=pxr-arch/include",
|
|
33
|
+
"-DCMAKE_INSTALL_DATAROOTDIR=pxr-arch",
|
|
34
|
+
]
|
|
35
|
+
sdist.exclude = ["test", "doc", ".github"]
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["scikit-build-core"]
|
|
3
|
+
build-backend = "scikit_build_core.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pxr-arch-dev"
|
|
7
|
+
version = "25.5.1"
|
|
8
|
+
description = "C++ headers and CMake config for developing with pxr-arch"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license-files = ["LICENSE.txt", "NOTICE.txt"]
|
|
12
|
+
keywords = ["pixar", "open-usd", "dev"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: POSIX :: Linux",
|
|
17
|
+
"Operating System :: MacOS :: MacOS X",
|
|
18
|
+
"Operating System :: Microsoft :: Windows :: Windows 10",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Repository = "https://github.com/untwine/pxr-arch"
|
|
23
|
+
Documentation = "https://untwine.github.io/pxr-arch/"
|
|
24
|
+
|
|
25
|
+
[tool.scikit-build]
|
|
26
|
+
cmake.version = ">=3.21,<4"
|
|
27
|
+
cmake.args = [
|
|
28
|
+
"-DBUILD_TESTS=OFF",
|
|
29
|
+
"-DBUILD_DOCS=OFF",
|
|
30
|
+
"-DBUILD_SHARED_LIBS=ON",
|
|
31
|
+
"-DCMAKE_INSTALL_LIBDIR=pxr-arch/lib",
|
|
32
|
+
"-DCMAKE_INSTALL_INCLUDEDIR=pxr-arch/include",
|
|
33
|
+
"-DCMAKE_INSTALL_DATAROOTDIR=pxr-arch",
|
|
34
|
+
]
|
|
35
|
+
sdist.exclude = ["test", "doc", ".github"]
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
add_library(arch
|
|
2
|
+
pxr/arch/align.cpp
|
|
3
|
+
pxr/arch/assumptions.cpp
|
|
4
|
+
pxr/arch/attributes.cpp
|
|
5
|
+
pxr/arch/daemon.cpp
|
|
6
|
+
pxr/arch/debugger.cpp
|
|
7
|
+
pxr/arch/demangle.cpp
|
|
8
|
+
pxr/arch/env.cpp
|
|
9
|
+
pxr/arch/errno.cpp
|
|
10
|
+
pxr/arch/error.cpp
|
|
11
|
+
pxr/arch/fileSystem.cpp
|
|
12
|
+
pxr/arch/function.cpp
|
|
13
|
+
pxr/arch/hash.cpp
|
|
14
|
+
pxr/arch/initConfig.cpp
|
|
15
|
+
pxr/arch/library.cpp
|
|
16
|
+
pxr/arch/mallocHook.cpp
|
|
17
|
+
pxr/arch/regex.cpp
|
|
18
|
+
pxr/arch/stackTrace.cpp
|
|
19
|
+
pxr/arch/symbols.cpp
|
|
20
|
+
pxr/arch/systemInfo.cpp
|
|
21
|
+
pxr/arch/threads.cpp
|
|
22
|
+
pxr/arch/timing.cpp
|
|
23
|
+
pxr/arch/virtualMemory.cpp
|
|
24
|
+
pxr/arch/vsnprintf.cpp
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
target_include_directories(arch
|
|
28
|
+
PUBLIC
|
|
29
|
+
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
30
|
+
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
target_link_libraries(arch
|
|
34
|
+
PUBLIC
|
|
35
|
+
Threads::Threads
|
|
36
|
+
${CMAKE_DL_LIBS}
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
if (WIN32)
|
|
40
|
+
target_link_libraries(arch PUBLIC Ws2_32.lib Dbghelp.lib)
|
|
41
|
+
endif()
|
|
42
|
+
|
|
43
|
+
if (ENABLE_PRECOMPILED_HEADERS)
|
|
44
|
+
target_precompile_headers(arch
|
|
45
|
+
PRIVATE
|
|
46
|
+
pxr/arch/pch.h
|
|
47
|
+
)
|
|
48
|
+
endif()
|
|
49
|
+
|
|
50
|
+
set_target_properties(arch
|
|
51
|
+
PROPERTIES
|
|
52
|
+
POSITION_INDEPENDENT_CODE ON
|
|
53
|
+
OUTPUT_NAME "PxrArch"
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
target_compile_definitions(arch
|
|
57
|
+
PRIVATE
|
|
58
|
+
ARCH_EXPORTS
|
|
59
|
+
MFB_PACKAGE_NAME=arch
|
|
60
|
+
MFB_ALT_PACKAGE_NAME=arch
|
|
61
|
+
PUBLIC
|
|
62
|
+
PXR_VERSION=${PXR_VERSION}
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
install(
|
|
66
|
+
TARGETS arch EXPORT ${PROJECT_NAME}
|
|
67
|
+
RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
68
|
+
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
69
|
+
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
70
|
+
)
|
|
71
|
+
|
|
72
|
+
install(
|
|
73
|
+
FILES
|
|
74
|
+
pxr/arch/align.h
|
|
75
|
+
pxr/arch/api.h
|
|
76
|
+
pxr/arch/attributes.h
|
|
77
|
+
pxr/arch/buildMode.h
|
|
78
|
+
pxr/arch/daemon.h
|
|
79
|
+
pxr/arch/debugger.h
|
|
80
|
+
pxr/arch/defines.h
|
|
81
|
+
pxr/arch/demangle.h
|
|
82
|
+
pxr/arch/env.h
|
|
83
|
+
pxr/arch/errno.h
|
|
84
|
+
pxr/arch/error.h
|
|
85
|
+
pxr/arch/export.h
|
|
86
|
+
pxr/arch/fileSystem.h
|
|
87
|
+
pxr/arch/function.h
|
|
88
|
+
pxr/arch/functionLite.h
|
|
89
|
+
pxr/arch/hash.h
|
|
90
|
+
pxr/arch/hints.h
|
|
91
|
+
pxr/arch/inttypes.h
|
|
92
|
+
pxr/arch/library.h
|
|
93
|
+
pxr/arch/mallocHook.h
|
|
94
|
+
pxr/arch/math.h
|
|
95
|
+
pxr/arch/pragmas.h
|
|
96
|
+
pxr/arch/regex.h
|
|
97
|
+
pxr/arch/stackTrace.h
|
|
98
|
+
pxr/arch/symbols.h
|
|
99
|
+
pxr/arch/systemInfo.h
|
|
100
|
+
pxr/arch/threads.h
|
|
101
|
+
pxr/arch/timing.h
|
|
102
|
+
pxr/arch/virtualMemory.h
|
|
103
|
+
pxr/arch/vsnprintf.h
|
|
104
|
+
DESTINATION
|
|
105
|
+
${CMAKE_INSTALL_INCLUDEDIR}/pxr/arch
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
install(EXPORT ${PROJECT_NAME}
|
|
109
|
+
FILE pxr-arch-targets.cmake
|
|
110
|
+
NAMESPACE pxr::
|
|
111
|
+
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/cmake/pxr-arch
|
|
112
|
+
)
|