Re: make failing in custom code

2018-09-27 Thread Csaba Raduly
Hi, On Thu, Sep 27, 2018 at 4:31 PM, Tapas Mishra wrote: > Hi, > I am trying to do a project when I do a make on project code > in cygwin environment I get following error > > gcc -Wall -g -c main.c -o main.o > main.c: In function ‘main’: > main.c:50:8: warning: unused variable ‘physmem’ [-Wunus

Re: make failing in custom code

2018-09-27 Thread Mark Geisert
Tapas Mishra wrote: Hi, I am trying to do a project when I do a make on project code in cygwin environment I get following error gcc -Wall -g -c main.c -o main.o main.c: In function ‘main’: main.c:50:8: warning: unused variable ‘physmem’ [-Wunused-variable] char *physmem = page_table_get_phys

make failing in custom code

2018-09-27 Thread Tapas Mishra
Hi, I am trying to do a project when I do a make on project code in cygwin environment I get following error gcc -Wall -g -c main.c -o main.o main.c: In function ‘main’: main.c:50:8: warning: unused variable ‘physmem’ [-Wunused-variable] char *physmem = page_table_get_physmem(pt); ^