MobiVM / robovm

Ahead of time compiler for JVM bytecode targetting iOS, Mac OSX and Linux
https://mobivm.github.io
966 stars 133 forks source link

* option to customize arguments passed to linker #714

Closed dkimitsa closed 1 year ago

dkimitsa commented 1 year ago

this is being asked time-to-time. usually is is not required as can be covered by robovm, however it might be required for custom builds. to be configured using robovm.xml, sample config:

<config>

    <tools>
        <linker>
            <flags>
                <flag>-fembed-bitcode</flag>
                <flag>--other-flag</flag>
            </flags>
        </linker>
    </tools>
</config>