Changeset 5fdf7a in git for kernel


Ignore:
Timestamp:
Jan 10, 2013, 11:00:55 AM (11 years ago)
Author:
Max Horn <max@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d101b165f063c8f437a101b437baa6095a596422
Parents:
80c703d0b975055386088b85c7bcdd5c7684adc0
git-author:
Max Horn <max@quendi.de>2013-01-10 11:00:55+01:00
git-committer:
Oleksandr Motsak <http://goo.gl/mcpzY>2013-01-10 16:45:07+01:00
Message:
Replace --no-{rtti,exceptions} by -fno-{rtti,exceptions}

This improves compatibility with clang. Moreover, to the best
of my knowledge, the --no-* variants are undocumented to start with.
At least the GCC manuals for all versions from 2.95.3 till 4.7.2
only list the -fno-* variants, as far as I could tell.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/makefile.SAVE

    r80c703 r5fdf7a  
    4141PIPE            = -pipe
    4242CFLAGS          = -O3 -fomit-frame-pointer ${PIPE} ${LIBPOLYS_CFLAGS}
    43 CXXFLAGS        = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${LIBPOLYS_CFLAGS}
    44 CXXTEMPLFLAGS   =  --no-exceptions ## -fno-implicit-templates
     43CXXFLAGS        = -O3 -fomit-frame-pointer -fno-rtti ${PIPE} ${LIBPOLYS_CFLAGS}
     44CXXTEMPLFLAGS   =  -fno-exceptions ## -fno-implicit-templates
    4545CPPFLAGS        = -I${srcdir} -I..  -I${includedir}   ${LIBPOLYS_CFLAGS}
    4646DEFS            = -DNDEBUG -DOM_NDEBUG
Note: See TracChangeset for help on using the changeset viewer.