diff options
author | Marcus Shawcroft <marcus.shawcroft@linaro.org> | 2012-11-14 12:35:10 +0000 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@linaro.org> | 2012-11-14 12:35:10 +0000 |
commit | c485e4d2cce71139eb914797d862bf6d373a4684 (patch) | |
tree | a73fc5e2ff3b1e311bdfa59e2e69f3ec97f9c60b /nptl | |
parent | 3a0d900a997f8ade1332b56cd952e44158770491 (diff) | |
download | glibc-c485e4d2cce71139eb914797d862bf6d373a4684.zip glibc-c485e4d2cce71139eb914797d862bf6d373a4684.tar.gz glibc-c485e4d2cce71139eb914797d862bf6d373a4684.tar.bz2 |
Adding missing -fexception CFLAGS
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/Makefile | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 93e9946..48aa6da 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2012-11-14 Marcus Shawcroft <marcus.shawcroft@linaro.org> + + * Makefile (CFLAGS-open.c, CFLAGS-open64.c, CFLAGS-pause.c) + (CFLAGS-recv.c, CFLAGS-send.c): Define. + 2012-11-06 Chris Metcalf <cmetcalf@tilera.com> * tst-sem14.c (TIMEOUT): Set timeout to 10 seconds. diff --git a/nptl/Makefile b/nptl/Makefile index 9d77773..316fbae 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -191,6 +191,11 @@ CFLAGS-sigwait.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-msgrcv.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-msgsnd.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-tcdrain.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-open.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-open64.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-pause.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-recv.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-send.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-pt-system.c = -fexceptions |