WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: tce.dep  (Read 2438 times)

Offline slinxj

  • Newbie
  • *
  • Posts: 18
tce.dep
« on: July 14, 2009, 09:40:24 AM »
Hi, I am trying to compile a .tce extension to test and was wondering if the .dep is a required file that is read in ? Or are all the files in the tce directory read in automatically so any dependant libs will be loaded.

Thanks

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14815
Re: tce.dep
« Reply #1 on: July 14, 2009, 09:48:17 AM »
If you want to test a tce extension and the associated dep file, it is better to boot with the codes "base norestore" and copy the extension, the associated dep file and all dependent extensions to a directory such as /tmp/test.

/tmp/test would then contain something like:

extensionA.tce [the one to test]
extensionA.tce.dep
extensionB.tce
extensionC.tce
...

Where extensionA.tce, extensionB.tce, etc are listed in extensionA.tce.dep

Then try "tce-load /tmp/test/extensionA.tce" and if everything works, you're good to go.

Offline slinxj

  • Newbie
  • *
  • Posts: 18
Re: tce.dep
« Reply #2 on: July 14, 2009, 09:55:56 AM »
Very useful, thanks