Changeset ebf138 in git for kernel/Makefile.am


Ignore:
Timestamp:
Dec 19, 2011, 3:35:51 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
7c7495aa219ca8147f27848093f468e695d940e5
Parents:
5acf7dca6b6eb7a36ab400997b08fd8c6a42a9fc
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-12-19 15:35:51+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:09:33+01:00
Message:
adaptation to clang + disable a GMP hack

CHG: removed gcc-specific flags --no-rtti --no-exceptions (since not available in clang)
CHG: tricks with __cpluplus (around include gmp.h) lead can to errors (e.g. in clang)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/Makefile.am

    r5acf7dc rebf138  
    1010
    1111
    12 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates
     12CXXTEMPLFLAGS = ## -fno-implicit-templates
    1313
    1414libkernel_LTLIBRARIES = libkernel.la libkernel_g.la
     
    1919## -pedantic
    2020
    21 libkernel_la_CXXFLAGS   = -O3 -fomit-frame-pointer --no-rtti -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)
     21libkernel_la_CXXFLAGS   = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)
    2222libkernel_g_la_CXXFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} $(CXXTEMPLFLAGS)
    2323# -fdiagnostics-show-option
     
    9393test_s_g_CFLAGS = ${PIPE}
    9494
    95 test_s_r_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)
     95test_s_r_CXXFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)
    9696test_s_g_CXXFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} $(CXXTEMPLFLAGS)
    9797
     
    113113test_d_g_CFLAGS = ${PIPE}
    114114
    115 test_d_r_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)
     115test_d_r_CXXFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)
    116116test_d_g_CXXFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} $(CXXTEMPLFLAGS)
    117117
Note: See TracChangeset for help on using the changeset viewer.