Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
244dafb0
Commit
244dafb0
authored
Jun 07, 2017
by
Alexey Golubev
Committed by
GitHub
Jun 07, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #31 from ONLYOFFICE/ShockwaveNN-patch-1
Use `uname -m` for determine linux x64\x686
parents
a79d9041
149a1bdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Makefile
Makefile
+3
-3
No files found.
Makefile
View file @
244dafb0
...
...
@@ -21,11 +21,11 @@ else
LIB_PREFIX
:=
lib
MAKE
:=
make
-j
$(
shell
grep
-c
^processor /proc/cpuinfo
)
endif
UNAME_
P
:=
$(
shell
uname
-p
)
ifeq
($(UNAME_
P
),x86_64)
UNAME_
M
:=
$(
shell
uname
-m
)
ifeq
($(UNAME_
M
),x86_64)
ARCHITECTURE
:=
64
endif
ifneq
($(filter %86,$(UNAME_
P
)),)
ifneq
($(filter %86,$(UNAME_
M
)),)
ARCHITECTURE
:=
32
endif
endif
...
...
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