Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] application.ini file not created

with packaging type eclipse-repository, the .ini file next to the launcher should be generated.
However it seems this only happens if you provide e.g. VM args or program args in your .product file which should end up there.
See the "Launching" tab of the .product editor.

E.g. a product file with

   <launcherArgs>
      <programArgs>-consoleLog</programArgs>
      <vmArgs>-Xmx512m</vmArgs>
   </launcherArgs>

will produce eclipse.ini with content

-consoleLog
-vmargs
-Xmx512m

What tycho does internally is use the p2 product publisher to publish the product and then use the p2 director to install it.
If PDE build behaves differently we usually suspect it does some additional post/pre-processing magic in the generated ant files.

Can you achieve the same eclipse.ini content as produced by PDE by tweaking the .product file?

Regards,
Jan

-----Original Message-----
From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx] On Behalf Of motes motes
Sent: Dienstag, 25. Oktober 2011 10:56
To: Tycho user list
Subject: [tycho-user] application.ini file not created

When I build my product with PDE-Build a application.ini file is
created next to the application.exe file. But when I build my product
with tycho this *.ini file is not produced. Do I need to manually
setup something to create this file?
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top