Changes between Initial Version and Version 1 of Ticket #65778, comment 2
- Timestamp:
- Sep 6, 2022, 7:03:08 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #65778, comment 2
initial v1 1 1 if libfilezilla doesn’t use exceptions in the code, then explicitly turning exceptions off with -f flag that disables them should fix this. No exceptions, no throws, so no missing throw function. Code errors will abort instead of throwing an exception. 2 2 3 if it does use exceptions, then macports-libcxx woul ld be plan B. Slightly riskier, and possibly Filezilla might need to use it too if they share a lot of objects back and forth. Have to test that to see if it crashes.3 if it does use exceptions, then macports-libcxx would be plan B. Slightly riskier, and possibly Filezilla might need to use it too if they share a lot of objects back and forth. Have to test that to see if it crashes. 4 4 5 5 Longer-term, there are currently three c++17 headers that throw, and all are broken on 10.7 to 10.12 as libcxx there does not have the symbols (although 10.5 and 10.6 are OK as they use a newer libcxx), and none of this applies to libgcc so that route is available.