Uvm command line options not woking in makefile in windows machine using cygwin

Hi Team,

I am running the UVM environment using the makefile and running in cygwin (linux emulator ) in windows machine.
While running i am seeing that +UVM_VERBOSITY=UVM_DEBUG/UVM_LOW/UVM_HIGH are not working meaning the command line options are not updating.
Could you please help is there any way can we run using cygwin ?
thanks in advance

Makefile :

 UVM_HOME = C:/questasim64_10.7c/uvm-1.2/win64
 UVM_VERBOSITY = UVM_DEBUG
 
 lib:
 	vlib $(WORK)
 	vmap work $(WORK)
 
 comp:lib
 	vlog -work $(WORK) $(VLOG) +incdir+$(UVM_HOME)/src
 
 run:comp
 	@echo "Running with verosity :$(UVM_VERBOSITY)"
 	vsim $(VSIMBATCH) -sv_lib $(UVM_HOME)/uvm_dpi $(WORK).testbench +UVM_VERBOSITY=$(UVM_VERBOSITY)  
 
 clean:
 	rm -rf work 
 	clear

This Siemens sponsored public forum is not for discussing tool specific issues. Please read your tool’s User Manual or contact your tool vendor for support.