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

Side by Side Diff: ragel/build.sh

Issue 10383152: Add ragel to third_party. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/third_party/
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 set -x
7 set -e
8 set -u
9
10 cd "$(dirname "$0")"
11 rm -rf ragel-6.7
12 tar xSvpf ragel-6.7.tar.gz
13 (
14 cd ragel-6.7
15 ./configure
16 make -j16 \
17 CXXFLAGS="-m32" CXXLD='gcc -s' LIBS='-Wl,-Bstatic -lstdc++ -Wl,-Bdynamic'
18 cp -fv ragel/ragel ../ragel.linux
19 )
20 rm -rf ragel-6.7
OLDNEW
« ragel/README.chromium ('K') | « ragel/README.chromium ('k') | ragel/ragel.linux » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698