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

Side by Side Diff: ports/pango/nacl.patch

Issue 1417223003: Switch from using 'nacl_main' to 'main' entry point (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « ports/pango/build.sh ('k') | ports/perl/build.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 diff --git a/tests/cxx-test.C b/tests/cxx-test.C
2 --- a/tests/cxx-test.C
3 +++ b/tests/cxx-test.C
4 @@ -22,6 +22,11 @@
5 #include <pango/pangocairo.h>
6 #endif
7
8 +#ifdef __native_client__
9 +extern "C" int nacl_main();
10 +#define main nacl_main
11 +#endif
12 +
13 int
14 main ()
15 {
OLDNEW
« no previous file with comments | « ports/pango/build.sh ('k') | ports/perl/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698