Changeset 448 for trunk/avango-build/src/avango/build/__init__.py
- Timestamp:
- 05/14/10 11:31:00 (2 years ago)
- File:
-
- 1 edited
-
trunk/avango-build/src/avango/build/__init__.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/avango-build/src/avango/build/__init__.py
r323 r448 3 3 ########################################################################## 4 4 # # 5 # This file is part of A vango. #6 # # 7 # Copyright 1997 - 200 8Fraunhofer-Gesellschaft zur Foerderung der #5 # This file is part of AVANGO. # 6 # # 7 # Copyright 1997 - 2009 Fraunhofer-Gesellschaft zur Foerderung der # 8 8 # angewandten Forschung (FhG), Munich, Germany. # 9 9 # # 10 # A vangois free software: you can redistribute it and/or modify #10 # AVANGO is free software: you can redistribute it and/or modify # 11 11 # it under the terms of the GNU Lesser General Public License as # 12 12 # published by the Free Software Foundation, version 3. # 13 13 # # 14 # A vangois distributed in the hope that it will be useful, #14 # AVANGO is distributed in the hope that it will be useful, # 15 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of # 16 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # … … 18 18 # # 19 19 # You should have received a copy of the GNU Lesser General Public # 20 # License along with Avango. If not, see <http://www.gnu.org/licenses/>. # 21 # # 22 # Avango is a trademark owned by FhG. # 20 # License along with AVANGO. If not, see <http://www.gnu.org/licenses/>. # 23 21 # # 24 22 ########################################################################## … … 200 198 result.Append(CCFLAGS='-wd177,383,424,810,981,1418,1419,1572') 201 199 result.Append(LINKFLAGS='-static-intel') 202 200 203 201 if oshelper.os_is_windows(): 204 202 if result.get('OPENSCENEGRAPH_DEBUG', None): # FIXME move this elswhere … … 210 208 else: 211 209 result.Append(CCFLAGS='-ansi -Wall') 212 210 213 211 if result['DEBUG']: 214 212 if oshelper.os_is_windows(): … … 221 219 if result['CXX'] == 'g++': 222 220 result.Append(CCFLAGS='-fno-strict-aliasing') 223 221 224 222 if result['TRACE_LOGGING']: 225 223 result.Append(CPPDEFINES='TRACE_LOGGING') 226 224 227 225 if result['BUILD_32']: 228 226 # FIXME does this work in Windows or Mac OS X? 229 227 result.Append(CCFLAGS='-m32') 230 228 result.Append(LINKFLAGS='-m32') 231 229 232 230 result.PrependENVPath('PATH', result['BINARY_PATH']) 233 231 result.Prepend(CPPPATH=result['INCLUDE_PATH'].split(os.pathsep))
Note: See TracChangeset
for help on using the changeset viewer.
