Deleted Added
sdiff udiff text old ( 9045:eb2975c014cd ) new ( 9068:d421f95f92d9 )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2011 Advanced Micro Devices, Inc.
4# Copyright (c) 2009 The Hewlett-Packard Development Company
5# Copyright (c) 2004-2005 The Regents of The University of Michigan
6# All rights reserved.
7#
8# Redistribution and use in source and binary forms, with or without

--- 524 unchanged lines hidden (view full) ---

533 main.Append(CCFLAGS=['-Wno-self-assign'])
534 # Ruby makes frequent use of extraneous parantheses in the printing
535 # of if-statements
536 main.Append(CCFLAGS=['-Wno-parentheses'])
537
538 if compareVersions(clang_version, "3") >= 0:
539 main.Append(CXXFLAGS=['-std=c++0x'])
540else:
541 print 'Error: Don\'t know what compiler options to use for your compiler.'
542 print ' Please fix SConstruct and src/SConscript and try again.'
543 Exit(1)
544
545# Set up common yacc/bison flags (needed for Ruby)
546main['YACCFLAGS'] = '-d'
547main['YACCHXXFILESUFFIX'] = '.hh'
548
549# Do this after we save setting back, or else we'll tack on an
550# extra 'qdo' every time we run scons.

--- 498 unchanged lines hidden ---