Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1738)

Unified Diff: ports/glibc-compat/Makefile

Issue 1260083004: Add needed functions to glibc-compat for pkg (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: fix wrong c++ lib Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ports/glib/build.sh ('k') | ports/glibc-compat/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/glibc-compat/Makefile
diff --git a/ports/glibc-compat/Makefile b/ports/glibc-compat/Makefile
index 484c297c826f1013c0f6f179a4de9e723fd71fef..ac7e2fea26f4e4d270fb6b24af58dedf2d0b7fda 100644
--- a/ports/glibc-compat/Makefile
+++ b/ports/glibc-compat/Makefile
@@ -9,14 +9,13 @@ endif
CFLAGS += -Wno-implicit-function-declaration
CPPFLAGS += -Werror -Wno-unused-value -pthread
CPPFLAGS += -DNACL_SDK_VERSION=$(NACL_SDK_VERSION)
-# Adding -g here to work around PNaCl toolchain issue
-# TODO(sbc): remove this once we fix:
-# https://code.google.com/p/nativeclient/issues/detail?id=4200
-CPPFLAGS += -g
OUT := out
SOURCES := \
src/alarm.c \
+ src/dirfd.c \
src/err.c \
+ src/flock.c \
+ src/fts.c \
src/getprotobyname_r.c \
src/getservbyname_r.c \
src/herrno.c \
@@ -29,6 +28,7 @@ SOURCES := \
src/ns_name.c \
src/ns_netint.c \
src/ns_samedomain.c \
+ src/openat.c \
src/qsort_r.c \
src/random.c \
src/realpath.c \
@@ -39,7 +39,9 @@ SOURCES := \
src/res_libc.c \
src/res_mkquery.c \
src/res_query.c \
- src/res_send.c
+ src/res_send.c \
+ src/timegm.c \
+ src/writev.c
OBJS := $(patsubst src/%.c,$(OUT)/%.o,$(SOURCES))
« no previous file with comments | « ports/glib/build.sh ('k') | ports/glibc-compat/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698