I’m still trying to ARC.
In remoting/host/installer/mac/BUILD.gn I add:
configs += [ "//build/config/compiler:enable_arc" ]
and get the error:
ERROR at //remoting/host/installer/mac/BUILD.gn:134:3: Undefined identifier.
configs += [ "//build/config/compiler:enable_arc" ]
^------
But if I change to:
configs = [ "//build/config/compiler:enable_arc" ]
then I get:
../../remoting/host/installer/mac/uninstaller/remoting_uninstaller.mm:5:10: fatal error: 'remoting/host/installer/mac/uninstaller/remoting_uninstaller.h' file not found
#include "remoting/host/installer/mac/uninstaller/remoting_uninstaller.h"
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
where it can’t find files that are there, so there’s an issue with include paths. So splatting “configs” is bad, but then why doesn’t += work?
Does anyone have suggestions? Thanks.
Avi