*Hugin arm64 build here(Standalone):*
https://bitbucket.org/Dannephoto/hugin/downloads/Hugin-2022.1.0_arm64.dmg

Please test and report if it works or not(Mac M1 or M2 arm64)

Make sure to run this in terminal before starting the app:
*xattr -cr /Applications/Hugin*
Hit enter


Some progress around building a standalone arm64 package. Following Erkans
changes and also adding a change in boost.sh script tha last libs for hugin
to become fully stand alone is handled at the bottom of *boost.sh*. atomic
lib had no prefixed path and libboost_system.dylib cried about where atomic
lib were to be found. All fixed now.

if [ -f "$REPOSITORYDIR/lib/libboost_atomic.dylib" ]; then
 install_name_tool -id "$REPOSITORYDIR/lib/libboost_atomic.dylib"
"$REPOSITORYDIR/lib/libboost_atomic.dylib";
 install_name_tool -change "libboost_atomic.dylib"
"$REPOSITORYDIR/lib/libboost_atomic.dylib"
"$REPOSITORYDIR/lib/libboost_atomic.dylib";
fi

if [ -f "$REPOSITORYDIR/lib/libboost_filesystem.dylib" ]; then
 install_name_tool -id "$REPOSITORYDIR/lib/libboost_filesystem.dylib"
"$REPOSITORYDIR/lib/libboost_filesystem.dylib";
 install_name_tool -change "libboost_system.dylib"
"$REPOSITORYDIR/lib/libboost_system.dylib"
"$REPOSITORYDIR/lib/libboost_filesystem.dylib";
 install_name_tool -change "libboost_atomic.dylib"
"$REPOSITORYDIR/lib/libboost_atomic.dylib"
"$REPOSITORYDIR/lib/libboost_filesystem.dylib"
fi

if [ -f "$REPOSITORYDIR/lib/libboost_system.dylib" ]; then
 install_name_tool -id "$REPOSITORYDIR/lib/libboost_system.dylib"
"$REPOSITORYDIR/lib/libboost_system.dylib";
fi

if [ -f "$REPOSITORYDIR/lib/libboost_atomic.dylib" ]; then
 install_name_tool -id "$REPOSITORYDIR/lib/libboost_atomic.dylib"
"$REPOSITORYDIR/lib/libboost_atomic.dylib";
fi


On Thu, Apr 27, 2023 at 9:26 PM Gunter Königsmann <
gunter.koenigsm...@gmail.com> wrote:

> One message of this thread mentioned C++ complains about using a private
> method of wxString. That error message normally means that a function
> expects totally different types of arguments than it gets from the current
> code.
>
> If you allow the system to automatically convert everything to wxString
> and wxString to everything else without that causing an error you can call
> all versions of all functions with all types of arguments in any order
> without causing any error any more. But calling that function with those
> arguments still won't make any sense.p
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/CAHk3tqi%3DXdZ%2Be3FffqynwMiixrhDp5hkqVpQnNvkQVkypRHwbQ%40mail.gmail.com.

Reply via email to