From d338c136db8acc4378154cf66ed7db5462787602 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 10 Nov 2021 22:11:13 +0000 Subject: [PATCH] fix(build): do not re-link eln files by default Relinking is currently failing for some of the *.eln files. See #60 for details of the error. Long-term plan is to investigate native-comp's compilation options to hopefully resolve this issue. --- build-emacs-for-macos | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-emacs-for-macos b/build-emacs-for-macos index 16f8668..f169039 100755 --- a/build-emacs-for-macos +++ b/build-emacs-for-macos @@ -1153,7 +1153,7 @@ if __FILE__ == $PROGRAM_NAME cli_options = { work_dir: File.expand_path(__dir__), native_full_aot: false, - relink_eln: true, + relink_eln: false, native_march: false, parallel: Etc.nprocessors, rsvg: true, @@ -1213,7 +1213,7 @@ if __FILE__ == $PROGRAM_NAME opts.on('--[no-]relink-eln-files', 'Enable/disable re-linking shared libraries in bundled *.eln ' \ - 'files (default: enabled)') do |v| + 'files (default: disabled)') do |v| cli_options[:relink_eln] = v end