diff --git a/ci/build_unix.sh b/ci/build_unix.sh index 2cdfb0f36..5ebf972ff 100644 --- a/ci/build_unix.sh +++ b/ci/build_unix.sh @@ -17,6 +17,12 @@ if [[ `uname` == 'Darwin' ]]; then export SHLIB_EXT=".dylib" # I - hmaarrrfk - forget why the definition of LDFLAGS here is necessary export LDFLAGS="-undefined dynamic_lookup ${LDFLAGS}" + + # clang14 introduced a new default that turns this flag on on osx arm64 leading + # to failing tests. Setting it off restores clang13 behavior and seems in line + # with x86 compilation. + # ref: https://github.com/llvm/llvm-project/issues/91824 + export CXXFLAGS="-ffp-contract=off ${CXXFLAGS}" else export SHLIB_EXT=".so" fi diff --git a/docsrc/Doxyfile.in b/docsrc/Doxyfile.in index d734e9356..2d706b450 100644 --- a/docsrc/Doxyfile.in +++ b/docsrc/Doxyfile.in @@ -783,7 +783,7 @@ HTML_STYLESHEET = @PROJECT_SOURCE_DIR@/docsrc/vigra.css # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. -HTML_EXTRA_FILES = @PROJECT_SOURCE_DIR@/src/examples/lenna_color.gif \ +HTML_EXTRA_FILES = @PROJECT_SOURCE_DIR@/src/examples/astronaut_color.gif \ @PROJECT_SOURCE_DIR@/src/examples/lenna_gray.gif # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, diff --git a/docsrc/examples.dxx b/docsrc/examples.dxx index 7d50cbe3a..b32a7b53e 100644 --- a/docsrc/examples.dxx +++ b/docsrc/examples.dxx @@ -7,7 +7,7 @@ See Installation for instructions on how these programs can be compiled. For convenience, the directory contains the test images lenna_gray.gif and - lenna_color.gif. + astronaut_color.gif.