Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] how to enforce to reinstall cdt
  • From: 叶 渊博 <janboe.ye@xxxxxxxxxxx>
  • Date: Sat, 24 Aug 2019 02:13:48 +0000
  • Accept-language: zh-CN, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=RMMELwEOBEF02KiI41WrQxCZx7Q0YQ7dkRHxyTO0vRk=; b=Y4vM5Be1ujImcOQzh59aG3xUqJNZ+HmKbnbOe+pDcgkUvMJGeotE/NX3jf/+Dk7RfoPpzt3SHfMKCEupVaOTh3rSdkl2pUJHWnUE3zaz9rqmonqhDzRz19ND2J9p5c4RL3SeixHc8emr0A5OmnkSv+0rNLBVKBwJEzUv3/+pg2RVqoUskifXK+0j6UpvU+LcRv15wYLBwBCwll13OL8MbzmS2SQtByxgsEBMqFrFR6XCcQMtRBYflqe+G/geoIHEydXWt8JPLL86dHbgDYeYaDDsyb7CEzEAYFFhZhGc7GZ5d+D4oAq89qdS/R9zrOCdDxqNcxpNv6yVF/pO5KZK8A==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Aeov+IiOOLH9p8dYGjZ3P5H/U4gMIGeFQOAToZUcs8CbvlkiEpxmo+xxygpaBm7SSc4dvQbs17RtpcO3+R7YJWp3XLtp4vPwXvI3KUW7sG/h29gcTk27wMrqATASCpNBbsbDlqv3iAdF5v3dPrvtDZcp8LaP9iawBJJ3aCIlIya9IwrYzCyJ6HrpP1lE5QZGKZUJs0sR7zaUqfNHubHM6DVmItYaarOnchYeFF9LPImVew7z44h9imi9CuCzs02yijz4+2BcdMKz7VRVvX1JL3ilvUgEGfVNXPyEvWZJN9IhlZFUlNk86xlkSGH6+J1BCUZJyeWJ2RlN6+lR/Hq52Q==
  • Delivered-to: cdt-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/cdt-dev>
  • List-help: <mailto:cdt-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHVWUOiXu4BWUcG5U+YMbnSIrwkbacIlIkAgAD8DgA=
  • Thread-topic: [cdt-dev] how to enforce to reinstall cdt

hi, Jonah

it works.

Thanks
Janboe
On 08/23/2019 19:12Jonah Graham<jonah@xxxxxxxxxxxxxxxx> wrote:
Hi Janboe,

If I understand correctly, you can "play around" with the version numbers and dependencies. For example, if you have modified org.eclipse.cdt.core, you can change the version number a little bit (probably best to stick to service segment, the third number) and then add a dependency that is strictly on that version.

E.g. in MANIFEST.MF for cdt.core, change:
Bundle-Version: 6.9.0.qualifier
to 
Bundle-Version: 6.9.987.qualifier

and in the dependent project do this:
Require-Bundle: org.eclipse.cdt.core;bundle-version="[6.9.987,6.9.987)"

Of course playing around with version numbers can have some unwanted side effects if you are mixing official CDT releases with your releases. Therefore you should try to make sure that you have some control on the update (p2) sites so that only one version of CDT is available to p2 in the first instance.

HTH,
Jonah

~~~
Jonah Graham
Kichwa Coders
www.kichwacoders.com


On Thu, 22 Aug 2019 at 20:02, 叶 渊博 <janboe.ye@xxxxxxxxxxx> wrote:
hi,

How can I enforce to install the same version cdt if I rebuild cdt after removing some debugging code?

thanks

Janboe


_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/cdt-dev

Back to the top