Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Startrek Online Development Thread.

Status
Not open for further replies.
Initiate Mage
Joined
Jan 4, 2014
Messages
3
Reaction score
0
Welcome to the STO Development Thread. I'll be posting my update progress on compiling the client here. All help is welcome.



Errors so far:
Error 89 error LNK1104: cannot open file 'C\src\objWindows7.1SDK\GameClientLib\Debug Win32\Character_target.obj' src\StarTrek\GameClient\LINK STGameClient

I need to fix this.


Completion: 0%
 
Joined
Oct 28, 2011
Messages
2,465
Reaction score
1,258
Apparently... you didn't take the time to build what is required of the object your attempting to link with.
Examine the error closer, it tells you exactly what is missing.
Until you've created it first you're not getting anywhere.

Doesn't the error tell you that you need to build the pre-requisites first and then this particular project / solution?

**
I'll save you from answering:
Yes, you need to build the pre-requisites, prior to building whatever you just feel like clicking "compile" on.
There is a specific build order, always is.
Take the time to figure it out.

**PS:
I would rename this thread to:
"Need assistance learning to build C++ solutions / projects."
No offense, I'm blunt and call it as I see it.


Good luck, you're going to need it.
 
Last edited:
Joined
Jun 16, 2007
Messages
592
Reaction score
869
Apparently... you didn't take the time to build what is required of the object your attempting to link with.
Examine the error closer, it tells you exactly what is missing.
Until you've created it first you're not getting anywhere.

Doesn't the error tell you that you need to build the pre-requisites first and then this particular project / solution?

**
I'll save you from answering:
Yes, you need to build the pre-requisites, prior to building whatever you just feel like clicking "compile" on.
There is a specific build order, always is.
Take the time to figure it out.

**PS:
I would rename this thread to:
"Need assistance learning to build C++ solutions / projects."
No offense, I'm blunt and call it as I see it.


Good luck, you're going to need it.

lol dude you hurt the guy's feelings xD
 
Joined
Oct 28, 2011
Messages
2,465
Reaction score
1,258
@MeGaMaX
I'm not trying to be mean bro. I'm just being honest and blunt, like I always am.

===========================================================
rootx
Take a little time to look at the error. It says what is missing. :0)

Error 89 error LNK1104: cannot open file 'C\src\objWindows7.1SDK\GameClientLib\Debug Win32\Character_target.obj' src\StarTrek\GameClient\LINK STGameClient

Taking a look at this error:
Since it cannot find Character_target.obj, the Character_target.obj was never created.
Since it was never created, it leads one to the simple answer:
You must find which solution contains the Character_target in order to create Character_target.obj through compiling the code.

Again, I am not putting anyone down or even being negative.

The error says:
Code:
error LNK1104: cannot open file
This would tell you that you have not created the .obj file to link against.

Again, as before, good luck.
 
Last edited:
Joined
Dec 20, 2010
Messages
418
Reaction score
605
Thread doesn't contain enough information to stay open. Thread closed, contact me for re-opening if you are able to update the thread.
 
Status
Not open for further replies.
Back
Top