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
3ea48989
Commit
3ea48989
authored
Oct 09, 2017
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
1d00c343
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
Common/3dParty/v8/fetch_linux_correct.sh
Common/3dParty/v8/fetch_linux_correct.sh
+42
-0
No files found.
Common/3dParty/v8/fetch_linux_correct.sh
0 → 100644
View file @
3ea48989
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
export
PATH
=
`
pwd
`
/depot_tools:
"
$PATH
"
if
[
-d
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_x64/Release"
]
;
then
rm
-rf
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_x64/Release"
fi
if
[
-d
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_ia32/Release"
]
;
then
rm
-rf
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_ia32/Release"
fi
cd
"
$SCRIPTPATH
/v8"
gclient
sync
if
[
-d
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_x64/Release/bin"
]
;
then
cd
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_x64/Release/bin"
for
file
in
*
do
echo
$file
if
[
$file
!=
"ld.gold"
]
then
mv
"
$file
"
"old_
${
file
}
"
ln
-s
/usr/bin/
"
$file
"
./
"
$file
"
fi
done
fi
if
[
-d
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_ia32/Release/bin"
]
;
then
cd
"
$SCRIPTPATH
/v8/third_party/binutils/Linux_ia32/Release/bin"
for
file
in
*
do
echo
$file
if
[
$file
!=
"ld.gold"
]
then
mv
"
$file
"
"old_
${
file
}
"
ln
-s
/usr/bin/
"
$file
"
./
"
$file
"
fi
done
fi
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