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

Side by Side Diff: llvm.sh

Issue 3183009: WIP patch with fixes for building with Clang. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Update Created 10 years, 2 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
« no previous file with comments | « chrome/renderer/render_view_browsertest.cc ('k') | lss.patch » ('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 #Info: http://code.google.com/p/chromium/wiki/Clang
2
3 export PATH=$PATH:/work/llvm/Release+Asserts/bin
4
5 export CC=clang
6 export CXX=clang++
7 export builddir_name=llvm
8 export LINK="flock linker.lock $CXX"
9
10 export GYP_DEFINES='clang=1 linux_use_tcmalloc=0'
11
12 # set memory limits since clang goes off the rails sometimes
13 MEM=$((3*1000*1000))
14 ulimit -d $MEM -m $MEM -v $MEM
15
16 # Use build/gyp_chromium to regenerated Makefiles.
OLDNEW
« no previous file with comments | « chrome/renderer/render_view_browsertest.cc ('k') | lss.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698