Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » Renegade Discussions » Mod Forum » build error
build error [message #434510] Tue, 10 August 2010 15:39 Go to next message
T0tNl
Messages: 63
Registered: July 2007
Karma: 0
Recruit
>Creating browse information file...
1>Microsoft Browse Information Maintenance Utility Version 8.00.50727
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>BSCMAKE: error BK1506 : cannot open file '.\tmp\scripts\debug\engine_gm.sbr': No such file or directory
1>Build log was saved at "file://c:\Westwood\RenegadeFDS\Server\New Folder\tmp\scripts\debug\BuildLog.htm"
1>SSGM - 61 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========




wtfuxx . D:

[Updated on: Tue, 10 August 2010 15:41]

Report message to a moderator

Re: build error [message #434512 is a reply to message #434510] Tue, 10 August 2010 16:05 Go to previous messageGo to next message
saberhawk
Messages: 1068
Registered: January 2006
Location: ::1
Karma: 0
General (1 Star)
When in doubt, follow these steps:

  1. Build->Clean Solution
  2. Build->Build Solution


That should clear up the issue.
Re: build error [message #434513 is a reply to message #434512] Tue, 10 August 2010 16:11 Go to previous messageGo to next message
T0tNl
Messages: 63
Registered: July 2007
Karma: 0
Recruit
Thank you saberhawk , sadly their is a new issue that arisen and I can't fix it. I did a little research for it, someone had mentioned it being caused because vista setting the attribute's of "some files" to read only, I'm not familiar with what these file's are .

1>engine_io.obj : error LNK2019: unresolved external symbol __imp__RegQueryValueExA@24 referenced in function "unsigned int __cdecl Get_Registry_Int(char const *,int)" (?Get_Registry_Int@@YAIPBDH@Z)
1>engine_io.obj : error LNK2019: unresolved external symbol __imp__RegOpenKeyExA@20 referenced in function "unsigned int __cdecl Get_Registry_Int(char const *,int)" (?Get_Registry_Int@@YAIPBDH@Z)
1>scripts.dll : fatal error LNK1120: 2 unresolved externals
1>Build log was saved at "file://c:\Westwood\RenegadeFDS\Server\New Folder\tmp\scripts\debug\BuildLog.htm"
1>SSGM - 3 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

[Updated on: Tue, 10 August 2010 16:12]

Report message to a moderator

Re: build error [message #434514 is a reply to message #434513] Tue, 10 August 2010 16:24 Go to previous messageGo to next message
saberhawk
Messages: 1068
Registered: January 2006
Location: ::1
Karma: 0
General (1 Star)
This error is caused by an improper installation of the platform SDK. You need to make sure that you follow all steps listed in the FAQ stickied in this forum, specifically the installation of the platform SDK and integration with Visual C++ Express.
Re: build error [message #434515 is a reply to message #434510] Tue, 10 August 2010 16:24 Go to previous messageGo to next message
Sladewill is currently offline  Sladewill
Messages: 291
Registered: January 2009
Location: United Kingdom
Karma: 0
Recruit

use google, first website said

Advapi32.lib and gdi32.lib u need to include in your linker


FT-Owners - Sladewill,Snazy2007,Willdy
http://FT-Gaming.com for more info...
Re: build error [message #434516 is a reply to message #434510] Tue, 10 August 2010 16:38 Go to previous messageGo to next message
T0tNl
Messages: 63
Registered: July 2007
Karma: 0
Recruit
Thank you both for you're time and assistance, I found another method of fixing it.

1>Embedding manifest...
1>Creating browse information file...
1>Microsoft Browse Information Maintenance Utility Version 8.00.50727
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>Build log was saved at "file://c:\Westwood\RenegadeFDS\Server\New Folder\tmp\scripts\debug\BuildLog.htm"
1>SSGM - 0 error(s), 0 warning(s)
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========


Thumbs Up
Re: build error [message #434520 is a reply to message #434510] Tue, 10 August 2010 19:01 Go to previous messageGo to next message
Sladewill is currently offline  Sladewill
Messages: 291
Registered: January 2009
Location: United Kingdom
Karma: 0
Recruit

would you like to share this method for anyone else experiencing this problem?

FT-Owners - Sladewill,Snazy2007,Willdy
http://FT-Gaming.com for more info...
Re: build error [message #434523 is a reply to message #434510] Tue, 10 August 2010 19:21 Go to previous message
T0tNl
Messages: 63
Registered: July 2007
Karma: 0
Recruit
Quote:

Step 4: Update the corewin_express.vsprops file.
One more step is needed to make the Win32 template work in Visual C++ Express. You need to edit the corewin_express.vsprops file (found in C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults) and

Change the string that reads:

AdditionalDependencies="kernel32.lib"

to

AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib"



Step 5: Generate and build a Win32 application to test your paths.
In Visual C++ Express, the Win32 Windows Application type is disabled in the Win32 Application Wizard. To enable that type, you need to edit the file AppSettings.htm file located in the folder "%ProgramFiles%\Microsoft Visual Studio 8\VC\VCWizards\AppWiz\Generic\Application\html\1033\".

In a text editor comment out lines 441 - 444 by putting a // in front of them as shown here:

// WIN_APP.disabled = true;
// WIN_APP_LABEL.disabled = true;
// DLL_APP.disabled = true;
// DLL_APP_LABEL.disabled = true;

Save and close the file and open Visual C++ Express.

From the File menu, click New Project. In the New Project dialog box, expand the Visual C++ node in the Product Types tree and then click Win32. Click on the Win32 Console Application template and then give your project a name and click OK. In the Win32 Application Wizard dialog box, make sure that Windows application is selected as the Application type and the ATL is not selected. Click the Finish button to generate the project.

As a final step, test your project by clicking the Start button in the IDE or by pressing F5. Your Win32 application should build and run.


This was from C_C_guy . I take no credit for any of that credit's to C_C_Guy or whomever the respected people who made that are.
Previous Topic: Harvester under attack
Next Topic: START_TIMER Parameters
Goto Forum:
  


Current Time: Mon May 13 05:11:49 MST 2024

Total time taken to generate the page: 0.00719 seconds