Displaying 1 result from an estimated 1 matches for "isp_library".
Did you mean:
islibrary
2008 Dec 04
0
ERROR: ctfmerge: Cannot open output file isp for r/w: No such fil
...mp isp_freebsd.o" I can see CTF info embedded in the .o file
but in the linked kernel module, I found much less CTF info inside it.
I guess I should use "ctfmerge" to combine the CTF info from each obj file into the final kernel module, so I did
ctfmerge -L VERSION -o isp.ko isp.o isp_library.o ...
And I got this error:
ERROR: ctfmerge: Cannot open output file isp.ko for r/w: No such file or directory
In source code (/usr/src/cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.c), I found that the outfile
must exist and read/writeable before "ctfmerge -L VERSION" cmd is issued....