You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by od...@apache.org on 2008/01/22 12:11:12 UTC

svn commit: r614174 - /harmony/enhanced/classlib/trunk/depends/build/defines.mk

Author: odeakin
Date: Tue Jan 22 03:11:11 2008
New Revision: 614174

URL: http://svn.apache.org/viewvc?rev=614174&view=rev
Log:
Set appropriate debug flags for z/OS

Modified:
    harmony/enhanced/classlib/trunk/depends/build/defines.mk

Modified: harmony/enhanced/classlib/trunk/depends/build/defines.mk
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/depends/build/defines.mk?rev=614174&r1=614173&r2=614174&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/depends/build/defines.mk (original)
+++ harmony/enhanced/classlib/trunk/depends/build/defines.mk Tue Jan 22 03:11:11 2008
@@ -63,7 +63,12 @@
 INCLUDES += -I$(HY_HDK)/include -I$(HY_HDK)/jdk/include -I. -I$(SHAREDSUB)
 
 ifndef HYDEBUGCFLAGS
+ifneq ($(HY_OS),zos)
 HYDEBUGCFLAGS = -ggdb -O0
+else
+# z/OS has different debug flags
+HYDEBUGCFLAGS = -g -O0
+endif
 endif
 
 ifndef HYRELEASECFLAGS