fix use of -dead_strip_dylibs for macOS linker

This commit is contained in:
Landon Curt Noll
2023-08-14 14:58:22 -07:00
parent 92c8d89ed1
commit 40f8654aa4
4 changed files with 31 additions and 12 deletions

View File

@@ -96,8 +96,8 @@ custom(char *name, int count, VALUE **vals)
*/
if (custtbl_allowed == 0) {
fprintf(stderr,
"%sCalc was built with custom functions enabled but custtbl_allowed is 0\n",
(conf->tab_ok ? "\t" : ""));
"%sCalc was built with custom functions enabled but custtbl_allowed: %d == 0\n",
(conf->tab_ok ? "\t" : ""), custtbl_allowed);
return error_value(E_NO_CUSTOM);
}
@@ -123,8 +123,8 @@ custom(char *name, int count, VALUE **vals)
*/
if (custtbl_allowed != 0) {
fprintf(stderr,
"%sCalc was built with custom functions disabled but custtbl_allowed is != 0\n",
(conf->tab_ok ? "\t" : ""));
"%sCalc was built with custom functions disabled but custtbl_allowed: %d != 0\n",
(conf->tab_ok ? "\t" : ""), custtbl_allowed);
}
return error_value(E_NO_CUSTOM);