![]() |
|
|
|
#1
|
|||
|
|||
|
hi rcer,
I don't have the 11.9.1 here atm but in my older makefiles (11.4) the only section using the resource compiler is Code:
buildmsgfile Code:
$(RC) -r -fo what values are the variables Code:
EVENTLOGMESSAGEFILE EVENTLOGMESSAGEFILE2 cheers, dirkmill :B |
|
#2
|
|||
|
|||
|
too late to edit my previous post
![]() I just checked 11.9.1 i86_n3 out and initially got the same error message. you basically have two options: 1. create a (potentially empty) resource file for your vendor daemon 2. edit the makefile to skip compiling and linking of the resource file for the vendor daemon for option two just use the following as replacement of the daemon-section of your makefile: Code:
daemon: $(DAEMON)
$(DAEMON): $(XTRAOBJS) $(DAEMONLIBS) lsvendor.obj $(SRCDIR)\lsserver.h $(LMNEW_OBJ)
# $(RC) -r -fo $(VENDORNAME).res $(VENDORNAME).rc
$(LD) /subsystem:console /out:$(DAEMON) lsvendor.obj $(LMNEW_OBJ) \
# $(XTRAOBJS) $(DAEMONLIBS) $(CRT_LIB) $(XTRALIB1) $(DONGLELIB) $(ACTSTUB) $(VENDORNAME).res
$(XTRAOBJS) $(DAEMONLIBS) $(CRT_LIB) $(XTRALIB1) $(DONGLELIB) $(ACTSTUB)
$(EMBED_MANIFEST)
dirkmill :B |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What's the regular SDK compile flow with ECC check? | bridgeic | General Discussion | 1 | 08-29-2014 09:14 |
| How to fix these three RadASM compile errors? | bridgeic | General Discussion | 39 | 04-10-2013 12:32 |
| how to compile windows NT4/2000? | jonwil | General Discussion | 9 | 09-05-2004 10:30 |