We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Dear experts!
I'm trying to create a simple batch-file, that generates a library:
SET lib_debug=debug_lib.lib IF NOT EXIST %lib_debug% GOTO create_lib DEL %lib_debug% :create_lib lib51 create %lib_debug% FOR %%i IN (..\obj_dbg\*.obj) DO ( lib51 add %%i to %lib_debug%)
So the lib is going to be created (fine so far). But the lib is almost empty (<1KB). I've about 120 object-files with a total size of 8,8MB. Why the obj want not to be added? Do I have to take notice on the order of adding obj-files to the lib?
Thanks in advance!
Kind regards, Oliver
Doesn't lib51 support ..\obj_dbg\*.obj as parameter after the add command? If supported, that would be way faster than having to modify the same lib multiple times.
Thanks for the fast reply!
Unfortunately lib51 doesn't support the quicker-way. It needs the specific file-name.