<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On 12 November 2017 at 23:18, Ben Gamari <span dir="ltr"><<a href="mailto:ben@smart-cactus.org" target="_blank">ben@smart-cactus.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-">Harendra Kumar <<a href="mailto:harendra.kumar@gmail.com">harendra.kumar@gmail.com</a>> writes:<br>
<br>
> Hi,<br>
><br>
> GHC allows choosing a main function at link time using the "-main-is"<br>
> option. I was wondering if there is a possibility to choose the main<br>
> function at runtime. Or even better, if something equivalent to "ghc -e"<br>
> is somehow possible in a linked binary executable. If not, are there any<br>
> plans to achieve something like that in future? Are there any theoretical,<br>
> practical obstacles to that?<br>
><br>
</span>In general it's not easy to get a reference to a an arbitrary function<br>
in an object file by it's source name. Unless the symbol is exported the<br>
compiler is free to optimize the function or even drop it altogether.<br></blockquote><div><br></div><div>I understand that. I was also wondering if there is way (some sort of annotation, pragma or any other workaround) to keep the symbols around without actually exporting them.  Exporting either clobbers the module interface from user point of view or the modules need a wrapper to avoid exporting such symbols in user exposed modules. I would also expect an option to remove the effect of any such annotation so that the production build is not under optimized because of this. This is in fact one of the problems that I have been facing in general. I do not know of a good way to hide symbols from users but use them in tests and benchmarks during dev. What is the GHC recommended way to achieve this?</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
If you can guarantee that the functions you are about are exported then<br>
in principle you could probably do what you ask from a library. Just<br>
`dlopen` the executable (which would need to be compiled as a position<br>
independent exectuable), and dlsym the appropriately mangled name.<br></blockquote><div><br></div><div>Yeah that is a good option for dynamically linked executables. In fact I have been using dlopen to implement Haskell plugins but did not think of using it for this use case. Thanks for reminding me. In a static executable, does it make sense to make the RTS choose an exported symbol as entry point using an RTS option?</div><div><br></div><div>-harendra</div></div><br></div></div>