Re: The '$' and 'O' in the Linker's Additional Options got eaten by NetBeans

2019-04-15 Thread Tushar Joshi
Awesome! with regards Tushar On Tue, Apr 16, 2019 at 8:57 AM Heng Zhou wrote: > With the inspiration from Mr. Tushar, I finally figured out the trick: The > option should be written as "\$$ORIGIN/FMOD". Double $ is key! :-) > > On Mon, Apr 15, 2019 at 11:19 PM Heng Zhou wrote: > >> That

Re: The '$' and 'O' in the Linker's Additional Options got eaten by NetBeans

2019-04-15 Thread Heng Zhou
With the inspiration from Mr. Tushar, I finally figured out the trick: The option should be written as "\$$ORIGIN/FMOD". Double $ is key! :-) On Mon, Apr 15, 2019 at 11:19 PM Heng Zhou wrote: > That way, the option passed is "\\\RIGIN/LibDir". > > On Mon, Apr 15, 2019 at 11:16 PM Tushar Joshi

Re: The '$' and 'O' in the Linker's Additional Options got eaten by NetBeans

2019-04-15 Thread Heng Zhou
That way, the option passed is "\\\RIGIN/LibDir". On Mon, Apr 15, 2019 at 11:16 PM Tushar Joshi wrote: > Can you please try "\\\$ORIGIN/LibDir" that is one escape character for > the backslash and one escape character for the $ > > with regards > Tushar > > Tushar Joshi, Nagpur: >

Re: The '$' and 'O' in the Linker's Additional Options got eaten by NetBeans

2019-04-15 Thread Tushar Joshi
Can you please try "\\\$ORIGIN/LibDir" that is one escape character for the backslash and one escape character for the $ with regards Tushar Tushar Joshi, Nagpur: http://www.tusharjoshi.com * MCSD_NET C#, SCJP, RHCE, ZCE, PMP, CSM, SAFe, PRINCE2 * Senior Architect @ Persistent Systems

The '$' and 'O' in the Linker's Additional Options got eaten by NetBeans

2019-04-15 Thread Heng Zhou
Hi, I wanna the following linker flags to be passed to the linker: -Wl,--enable-new-dtags,-rpath,"\$ORIGIN/LibDir" So I type it literally in the Linker's Additional Options. But I found that the '$' and 'O' in "\$ORIGIN/LibDir" got eaten by NetBeans, so only "\RIGIN" appears in actual linking