projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf97132
)
Also compile test module as C11
author
Philipp Stephani
<phst@google.com>
Mon, 12 Jun 2017 13:27:18 +0000
(15:27 +0200)
committer
Philipp Stephani
<phst@google.com>
Mon, 12 Jun 2017 13:27:18 +0000
(15:27 +0200)
* test/data/emacs-module/Makefile (CFLAGS): Compile test module as C11
test/data/emacs-module/Makefile
patch
|
blob
|
history
diff --git
a/test/data/emacs-module/Makefile
b/test/data/emacs-module/Makefile
index db5e1b680880910ba4e69a67034f7990e2b7b3e3..bfeddb0472fcfa99a33353958aeae2fd28112d16 100644
(file)
--- a/
test/data/emacs-module/Makefile
+++ b/
test/data/emacs-module/Makefile
@@
-27,9
+27,9
@@
LDFLAGS =
SO = .so
# -fPIC is a no-op on Windows, but causes a compiler warning
ifeq ($(SO),.dll)
-CFLAGS = -std=
gnu99
-ggdb3 -Wall
+CFLAGS = -std=
c11
-ggdb3 -Wall
else
-CFLAGS = -std=
gnu99
-ggdb3 -Wall -fPIC
+CFLAGS = -std=
c11
-ggdb3 -Wall -fPIC
endif
all: mod-test$(SO)