Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
4d8c2f94
Commit
4d8c2f94
authored
Jan 10, 2013
by
liujisi@google.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add arm_qnx atomic ops support and add missing header files in Makefile.am
parent
98080e85
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
Makefile.am
src/Makefile.am
+2
-0
atomicops.h
src/google/protobuf/stubs/atomicops.h
+2
-0
platform_macros.h
src/google/protobuf/stubs/platform_macros.h
+3
-0
No files found.
src/Makefile.am
View file @
4d8c2f94
...
@@ -40,9 +40,11 @@ MAINTAINERCLEANFILES = \
...
@@ -40,9 +40,11 @@ MAINTAINERCLEANFILES = \
nobase_include_HEADERS
=
\
nobase_include_HEADERS
=
\
google/protobuf/stubs/atomicops.h
\
google/protobuf/stubs/atomicops.h
\
google/protobuf/stubs/atomicops_internals_arm_gcc.h
\
google/protobuf/stubs/atomicops_internals_arm_gcc.h
\
google/protobuf/stubs/atomicops_internals_arm_qnx.h
\
google/protobuf/stubs/atomicops_internals_atomicword_compat.h
\
google/protobuf/stubs/atomicops_internals_atomicword_compat.h
\
google/protobuf/stubs/atomicops_internals_macosx.h
\
google/protobuf/stubs/atomicops_internals_macosx.h
\
google/protobuf/stubs/atomicops_internals_mips_gcc.h
\
google/protobuf/stubs/atomicops_internals_mips_gcc.h
\
google/protobuf/stubs/atomicops_internals_pnal.h
\
google/protobuf/stubs/atomicops_internals_x86_gcc.h
\
google/protobuf/stubs/atomicops_internals_x86_gcc.h
\
google/protobuf/stubs/atomicops_internals_x86_msvc.h
\
google/protobuf/stubs/atomicops_internals_x86_msvc.h
\
google/protobuf/stubs/common.h
\
google/protobuf/stubs/common.h
\
...
...
src/google/protobuf/stubs/atomicops.h
View file @
4d8c2f94
...
@@ -178,6 +178,8 @@ GOOGLE_PROTOBUF_ATOMICOPS_ERROR
...
@@ -178,6 +178,8 @@ GOOGLE_PROTOBUF_ATOMICOPS_ERROR
#include <google/protobuf/stubs/atomicops_internals_x86_gcc.h>
#include <google/protobuf/stubs/atomicops_internals_x86_gcc.h>
#elif defined(GOOGLE_PROTOBUF_ARCH_ARM)
#elif defined(GOOGLE_PROTOBUF_ARCH_ARM)
#include <google/protobuf/stubs/atomicops_internals_arm_gcc.h>
#include <google/protobuf/stubs/atomicops_internals_arm_gcc.h>
#elif defined(GOOGLE_PROTOBUF_ARCH_ARM_QNX)
#include <google/protobuf/stubs/atomicops_internals_arm_qnx.h>
#elif defined(GOOGLE_PROTOBUF_ARCH_MIPS)
#elif defined(GOOGLE_PROTOBUF_ARCH_MIPS)
#include <google/protobuf/stubs/atomicops_internals_mips_gcc.h>
#include <google/protobuf/stubs/atomicops_internals_mips_gcc.h>
#elif defined(__pnacl__)
#elif defined(__pnacl__)
...
...
src/google/protobuf/stubs/platform_macros.h
View file @
4d8c2f94
...
@@ -43,6 +43,9 @@
...
@@ -43,6 +43,9 @@
#elif defined(_M_IX86) || defined(__i386__)
#elif defined(_M_IX86) || defined(__i386__)
#define GOOGLE_PROTOBUF_ARCH_IA32 1
#define GOOGLE_PROTOBUF_ARCH_IA32 1
#define GOOGLE_PROTOBUF_ARCH_32_BIT 1
#define GOOGLE_PROTOBUF_ARCH_32_BIT 1
#elif defined(__QNX__)
#define GOOGLE_PROTOBUF_ARCH_ARM_QNX 1
#define GOOGLE_PROTOBUF_ARCH_32_BIT 1
#elif defined(__ARMEL__)
#elif defined(__ARMEL__)
#define GOOGLE_PROTOBUF_ARCH_ARM 1
#define GOOGLE_PROTOBUF_ARCH_ARM 1
#define GOOGLE_PROTOBUF_ARCH_32_BIT 1
#define GOOGLE_PROTOBUF_ARCH_32_BIT 1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment