< prev index next >

make/windows/makefiles/defs.make

Print this page




 289   EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar
 290   # Must pass this down to nmake.
 291   MAKE_ARGS += BUILD_WIN_SA=1
 292 endif
 293 
 294 # Propagate compiler and tools paths from configure to nmake.
 295 # Need to make sure they contain \\ and not /.
 296 ifneq ($(SPEC),)
 297   ifeq ($(USING_CYGWIN), true)
 298     MAKE_ARGS += CXX="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(CXX)))"
 299     MAKE_ARGS += LD="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(LD)))"
 300     MAKE_ARGS += RC="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(RC)))"
 301     MAKE_ARGS += MT="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(MT)))"
 302   else
 303     MAKE_ARGS += CXX="$(subst /,\\,$(CXX))"
 304     MAKE_ARGS += LD="$(subst /,\\,$(LD))"
 305     MAKE_ARGS += RC="$(subst /,\\,$(RC))"
 306     MAKE_ARGS += MT="$(subst /,\\,$(MT))"
 307   endif
 308 endif





 289   EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar
 290   # Must pass this down to nmake.
 291   MAKE_ARGS += BUILD_WIN_SA=1
 292 endif
 293 
 294 # Propagate compiler and tools paths from configure to nmake.
 295 # Need to make sure they contain \\ and not /.
 296 ifneq ($(SPEC),)
 297   ifeq ($(USING_CYGWIN), true)
 298     MAKE_ARGS += CXX="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(CXX)))"
 299     MAKE_ARGS += LD="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(LD)))"
 300     MAKE_ARGS += RC="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(RC)))"
 301     MAKE_ARGS += MT="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(MT)))"
 302   else
 303     MAKE_ARGS += CXX="$(subst /,\\,$(CXX))"
 304     MAKE_ARGS += LD="$(subst /,\\,$(LD))"
 305     MAKE_ARGS += RC="$(subst /,\\,$(RC))"
 306     MAKE_ARGS += MT="$(subst /,\\,$(MT))"
 307   endif
 308 endif
 309 
 310 MAKE_ARGS += ENABLE_JFR=$(ENABLE_JFR)
 311 
< prev index next >