Bump to OCCT 8.0.1
Four mechanical binding edits; the bound Python surface is unchanged (sigdiff compared the 7.9.3.1 dump against 8.0.1.1's in both directions and found no class, member or constructor arity moved), so the app needs no change. - NCollection_Utf8String is gone; NCollection_String is the same UTF-8 type. Python name kept, since the app imports it. - Standard_Failure lost its Standard_Transient RTTI when it moved to deriving std::exception; ExceptionType() replaced DynamicType()->Name() and returns the same class names the exception dispatch keys on. - FindKey gained a size_t overload beside the int one, so the plain member pointer is ambiguous; overload_cast picks the int form, which keeps the negative-index guard. - StdPrs moved from TKService to TKV3d, so CMakeLists links both. The byte-identity fixtures did NOT retire, contrary to the watchlist: all six round-trip to the same digests under the new kernel, as do the measurement, history and mesh-count blocks, so tests/data is untouched and the app's content-addressed BREP payloads stay valid. Gates: binding suite 83 passed, 138/138 symbols, sigdiff clean both directions, ASAN clean, app suite 1798 passed / 1 skipped (unchanged), sweep over 4486 parts with anchors_digest and every status unchanged, -m perf 16% faster on the 32-feature chain.
This commit is contained in:
@@ -16,8 +16,8 @@ FROM quay.io/pypa/manylinux_2_28_x86_64@sha256:f854c50adf7b7a325bc4794316f3758d3
|
||||
RUN dnf install -y freetype-devel fontconfig-devel ninja-build ccache valgrind \
|
||||
&& dnf clean all
|
||||
|
||||
ARG OCCT_TAG=V7_9_3
|
||||
ARG OCCT_SHA256=5ecf094ec6b12d5413dfb851d8c3590c354058aee556e32e408bdfbf8c357d57
|
||||
ARG OCCT_TAG=V8_0_1
|
||||
ARG OCCT_SHA256=0d6913eae4bcc09a3653ceced6dda1aec11c35a1513d4c06762c9b002092c68a
|
||||
|
||||
RUN curl -fsSL -o /tmp/occt.tar.gz \
|
||||
"https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/${OCCT_TAG}.tar.gz" \
|
||||
@@ -43,7 +43,6 @@ RUN cmake -G Ninja -S /src -B /build \
|
||||
-DBUILD_MODULE_DataExchange=ON \
|
||||
-DBUILD_MODULE_ApplicationFramework=ON \
|
||||
-DBUILD_MODULE_Draw=OFF \
|
||||
-DBUILD_MODULE_DETools=OFF \
|
||||
-DUSE_FREETYPE=ON \
|
||||
-DUSE_VTK=OFF -DUSE_TK=OFF -DUSE_TCL=OFF \
|
||||
-DUSE_XLIB=OFF -DUSE_OPENGL=OFF -DUSE_GLES2=OFF \
|
||||
|
||||
Reference in New Issue
Block a user