Hi, i'm tryign to compile chromium on my XP box (on a cygwin bash shell), when i run make i get this error:
$ make cr.mk:18: config/CYGWIN_NT5.1.mk: No such file or directory make: *** No rule to make target `config/CYGWIN_NT5.1.mk'. Stop.
help anyone?
near the top of the file cr.mk, change
ifeq ($(ARCH),CYGWIN_NT5.0) ARCH=WIN_NT endif
to
ifeq ($(ARCH),CYGWIN_NT5.1) ARCH=WIN_NT endif
This hack should work. I can't test it since I do all my work on linux.
-dave
Log in to post a comment.
Hi, i'm tryign to compile chromium on my XP box (on a cygwin bash shell), when i run make i get this error:
$ make
cr.mk:18: config/CYGWIN_NT5.1.mk: No such file or directory
make: *** No rule to make target `config/CYGWIN_NT5.1.mk'. Stop.
help anyone?
near the top of the file cr.mk, change
ifeq ($(ARCH),CYGWIN_NT5.0)
ARCH=WIN_NT
endif
to
ifeq ($(ARCH),CYGWIN_NT5.1)
ARCH=WIN_NT
endif
This hack should work. I can't test it since I do all my work on linux.
-dave