 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Joe Pasquariello Guest
|
Posted: Thu Aug 24, 2006 2:52 am Post subject: FXCSTRFUNC ? |
|
|
Hello,
Sorry for the 2nd posting on this question. I'm getting a linker error in my
application:
[Linker Fatal Error] Fatal: Unable to open file 'FXCSTRFUNC.OBJ'
I've searched my project and even my entire disk for "FXCSTRFUNC". I can't
find anything, nor can I figure out where in my app this object is needed.
Any pointers would be very much appreciated.
Joe |
|
| Back to top |
|
 |
Jonathan Benedicto Guest
|
Posted: Thu Aug 24, 2006 3:54 am Post subject: Re: FXCSTRFUNC ? |
|
|
Joe Pasquariello wrote:
| Quote: | [Linker Fatal Error] Fatal: Unable to open file 'FXCSTRFUNC.OBJ'
I've searched my project and even my entire disk for "FXCSTRFUNC". I can't
find anything, nor can I figure out where in my app this object is needed.
Any pointers would be very much appreciated.
|
Open your bdsproj file and see if it references it. If it doesn't, check to
see whether any of your cpp files have a #pragma link FXCSTRFUNC.
HTH
Jonathan |
|
| Back to top |
|
 |
Craig Farrell Guest
|
Posted: Thu Aug 24, 2006 4:48 am Post subject: Re: FXCSTRFUNC ? |
|
|
Hi,
| Quote: | [Linker Fatal Error] Fatal: Unable to open file 'FXCSTRFUNC.OBJ'
I've searched my project and even my entire disk for "FXCSTRFUNC". I can't
find anything, nor can I figure out where in my app this object is needed.
Any pointers would be very much appreciated.
|
Are you sure you deleted all intermediates like .OBJ's to force
a re-generation? Don't rely on Build All becaues it cannot
do anything about link comment records.
Maybe it will help to show a way to generate
that error:
create and open a new file foo.c
paste into it:
#pragma link "fxcstrfunc.obj"
compile it:
bcc32 -c foo.c
Add foo.obj to a project and build, result:
[Linker Fatal Error] Fatal: Unable to open file 'FXCSTRFUNC.OBJ'
Then run tdump:
tdump -m foo.obj
Note the link commnet record telling the linker to find it. That
is what can cause that error.
..LIB's are collections of OBJ's so you should consider those too.
--Craig |
|
| Back to top |
|
 |
Frode Nilsen Guest
|
Posted: Thu Aug 24, 2006 1:41 pm Post subject: Re: FXCSTRFUNC ? |
|
|
Joe Pasquariello wrote:
| Quote: | Hello,
[Linker Fatal Error] Fatal: Unable to open file 'FXCSTRFUNC.OBJ'
I've searched my project and even my entire disk for "FXCSTRFUNC". I
can't find anything, nor can I figure out where in my app this object
is needed. Any pointers would be very much appreciated.
|
Your project has a reference to fxcstrfunc somewhere, the "objectfile"
itself is propably in a library file that you don't link with any more.
Delete all obj, lib, exe, bpl, dll _and_ precompiled headers for your
project.
Then give it a try.
hth
--
frode |
|
| Back to top |
|
 |
Joe Pasquariello Guest
|
Posted: Thu Aug 24, 2006 9:25 pm Post subject: Re: FXCSTRFUNC ? |
|
|
Hi Jonathan,
No luck there. See my responses to the other messages in this thread.
Joe
"Jonathan Benedicto" <invalid (AT) nobody (DOT) com> wrote in message
news:44ecdc96$1 (AT) newsgroups (DOT) borland.com...
| Quote: | Joe Pasquariello wrote:
[Linker Fatal Error] Fatal: Unable to open file 'FXCSTRFUNC.OBJ'
I've searched my project and even my entire disk for "FXCSTRFUNC". I
can't
find anything, nor can I figure out where in my app this object is
needed.
Any pointers would be very much appreciated.
Open your bdsproj file and see if it references it. If it doesn't, check
to
see whether any of your cpp files have a #pragma link FXCSTRFUNC.
HTH
Jonathan
|
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|