trying to compile a module and get some err

These are old archives. They are kept for historic purposes only.
Locked
SliderMan
Posts: 19
Joined: Fri Jul 29, 2005 1:34 pm
Contact:

trying to compile a module and get some err

Post by SliderMan »

Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
Copyright (C) Microsoft Corp 1988-1998. All rights reserved.

NMAKE : fatal error U1073: don't know how to make 'src/modules/.c'
Stop.
why?!?
nate
Posts: 148
Joined: Fri Jul 29, 2005 10:12 am
Location: Johnstown, Pa
Contact:

Post by nate »

Erm, i've never used the maintanence utility from MS, but i'mma guess here that if your trying to compile something for linux on windows, its just not gonna work, ya know, especially since that was trying to use the linux file format, or tree directory path, which isn't going to work on windows, since it needs a drive prefix at the beginning, such as C:\ or G:\, etc etc.
Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post by Jason »

Actually, nbishop, it should work, the unreal windows source is included with the unreal nix source.

What is the command you used to start the compile?
Why the hell can't my signature be empty?
"Your message contains too few characters."
SliderMan
Posts: 19
Joined: Fri Jul 29, 2005 1:34 pm
Contact:

Post by SliderMan »

like in the tutorial :P
nmake -f makefile.win32 custommodule MODULEFILE=<name>
thanks for helping me...
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

Did you compile Unreal first?
SliderMan
Posts: 19
Joined: Fri Jul 29, 2005 1:34 pm
Contact:

Post by SliderMan »

i get some err
while compiling
can u write the steps to me plz?
thanks for helping
moshe.
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

You need to follow the instrustions in doc/compiling_win32.txt and compile Unreal before you compile modules. There are also instructions in there for modules too.
SliderMan
Posts: 19
Joined: Fri Jul 29, 2005 1:34 pm
Contact:

Post by SliderMan »

cl /MD /Zi /J /I ./INCLUDE /Fosrc/ /nologo /D FD_SETSIZE=16384 /
D NOSPOOF=1 /c /c SRC/SUPPORT.c
SUPPORT.c
SRC/SUPPORT.c(2371) : error C2065: 'WSASYSCALLFAILURE' : undeclared identifier
SRC/SUPPORT.c(2371) : error C2099: initializer is not a constant
SRC/SUPPORT.c(2371) : warning C4047: 'initializing' : 'int ' differs in levels o
f indirection from 'unsigned char [20]'
NMAKE : fatal error U1077: 'cl' : return code '0x2'
Stop.
?!?
thanks for helping
SliderMan
Posts: 19
Joined: Fri Jul 29, 2005 1:34 pm
Contact:

Post by SliderMan »

SomeOne?
Syzop
UnrealIRCd head coder
Posts: 2115
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

argh.. I keep moving this back and forth ('Unreal 3.2 Support', 'Unreal 3.2 Modules').

Use the search and (find&)read some stuff on win32 compiling here on the forum. (note especially talk about: PSDK, how you start the shell etc...)
If that didn't help, post a new topic.
Locked