(file) Return to config-linux.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak

Diff for /pegasus/mak/config-linux.mak between version 1.61.8.5 and 1.62

version 1.61.8.5, 2013/12/03 01:21:40 version 1.62, 2012/07/26 11:14:52
Line 97 
Line 97 
  
 ifeq ($(COMPILER), clang) ifeq ($(COMPILER), clang)
     FLAGS += -W -Wall -Wno-unused-parameter  -Wno-unused-value -D_GNU_SOURCE \     FLAGS += -W -Wall -Wno-unused-parameter  -Wno-unused-value -D_GNU_SOURCE \
         -DTHREAD_SAFE -D_REENTRANT -Werror=unused-variable -Wno-unused-function \          -DTHREAD_SAFE -D_REENTRANT -Wno-unused-variable  -Wno-unused-function
         -Werror=switch  
 else else
     FLAGS += -W -Wall -Wno-unused -Wunused-variable      FLAGS += -W -Wall -Wno-unused  -D_GNU_SOURCE -DTHREAD_SAFE -D_REENTRANT
   # Starting with gcc 4.3 specific warnings can be reported as error  
   # Enabling a specific selection of warnings to turn into errors  
   ifeq ($(shell expr $(GCC_VERSION) '>=' 4.3), 1)  
     FLAGS += -Werror=unused-variable  
     FLAGS += -Werror=switch  
    endif    endif
     FLAGS += -D_GNU_SOURCE -DTHREAD_SAFE -D_REENTRANT  
 endif  
   
   
 ##============================================================================== ##==============================================================================
 ## ##
 ## The DYNAMIC_FLAGS variable defines linker flags that only apply to shared ## The DYNAMIC_FLAGS variable defines linker flags that only apply to shared
Line 122 
Line 112 
 ifdef PEGASUS_USE_DEBUG_BUILD_OPTIONS ifdef PEGASUS_USE_DEBUG_BUILD_OPTIONS
   FLAGS += -g   FLAGS += -g
 else else
     FLAGS += -s
   #   #
   # The -fno-enforce-eh-specs is not available in 2.9.5 and it probably   # The -fno-enforce-eh-specs is not available in 2.9.5 and it probably
   # appeared in the 3.0 series of compilers.   # appeared in the 3.0 series of compilers.
   #   #
   ifeq ($(COMPILER), gnu)   ifeq ($(COMPILER), gnu)
    # disable the strict aliasing  
    ifeq ($(shell expr $(GCC_VERSION) '>=' 3.0), 1)    ifeq ($(shell expr $(GCC_VERSION) '>=' 3.0), 1)
      PEGASUS_EXTRA_CXX_FLAGS += -fno-enforce-eh-specs -fno-strict-aliasing      EXTRA_CXX_FLAGS += -fno-enforce-eh-specs
    endif    endif
     else
             EXTRA_CXX_FLAGS += -fno-enforce-eh-specs
   endif   endif
  
   ifdef PEGASUS_OPTIMIZE_FOR_SIZE   ifdef PEGASUS_OPTIMIZE_FOR_SIZE
     ifeq ($(COMPILER), gnu)  
       FLAGS += -Os       FLAGS += -Os
     else     else
       FLAGS += -Oz  
     endif  
   else  
     FLAGS += -O2     FLAGS += -O2
   endif   endif
 endif endif


Legend:
Removed from v.1.61.8.5  
changed lines
  Added in v.1.62

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2