Author Topic: Open watcom lib question  (Read 4654 times)

arr531

  • Guest
Open watcom lib question
« on: February 18, 2017, 09:39:33 pm »
Does anyone know where there is a list that indicates which functions are contained in which lib files? I specifically want to know which lib file contains the time functions. Are all the time function code isolated by itself in one lib file? I would just like to recompile that lib file, if possible since I modified some of the code in 2 of the functions. This is version 1.9. I have downloaded the source. Creating apps with it is working great but recompiling existing lib files from source is turning out to be another ballgame with me apparently.

Adam

Pete

  • Hero Member
  • *****
  • Posts: 1281
  • Karma: +9/-0
    • View Profile
Re: Open watcom lib question
« Reply #1 on: February 19, 2017, 08:38:32 pm »
Hi adam

Not being a watcom user I cannot answer directly but can suggest a text search through the watcom source code for "time" should be of use.


Regards

Pete

Lars

  • Hero Member
  • *****
  • Posts: 1271
  • Karma: +65/-0
    • View Profile
Re: Open watcom lib question
« Reply #2 on: February 20, 2017, 04:14:54 am »
For static libraries, wlib should be able to give you a listing of the OBJ files contained in the library plus the names of the routines contained in those OBJ files. That should give enough of a clue.

arr531

  • Guest
Re: Open watcom lib question
« Reply #3 on: February 20, 2017, 01:43:13 pm »
Okay thanks gentleman. I will give both those suggestions a try.