mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-21 21:11:36 +00:00
Shell-script to build current directory and then link one tool (default: opt)
llvm-svn: 3727
This commit is contained in:
parent
69cf056052
commit
acd7cde1d8
18
makellvm
Executable file
18
makellvm
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/csh -f
|
||||
|
||||
set LLVMDIR = $HOME/llvm
|
||||
set EXEC = opt
|
||||
|
||||
if ($#argv > 0) then
|
||||
set EXEC = NO_SUCH_TOOL
|
||||
set TOOLS = `grep DIRS ${LLVMDIR}/tools/Makefile | sed 's/DIRS[ ]*=[ ]*//'`
|
||||
foreach T ( $TOOLS )
|
||||
if ($argv[1] == "$T") then
|
||||
set EXEC = $T
|
||||
shift argv
|
||||
break
|
||||
endif
|
||||
end
|
||||
endif
|
||||
|
||||
gnumake && (cd $LLVMDIR/tools/$EXEC && gnumake)
|
18
utils/makellvm
Executable file
18
utils/makellvm
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/csh -f
|
||||
|
||||
set LLVMDIR = $HOME/llvm
|
||||
set EXEC = opt
|
||||
|
||||
if ($#argv > 0) then
|
||||
set EXEC = NO_SUCH_TOOL
|
||||
set TOOLS = `grep DIRS ${LLVMDIR}/tools/Makefile | sed 's/DIRS[ ]*=[ ]*//'`
|
||||
foreach T ( $TOOLS )
|
||||
if ($argv[1] == "$T") then
|
||||
set EXEC = $T
|
||||
shift argv
|
||||
break
|
||||
endif
|
||||
end
|
||||
endif
|
||||
|
||||
gnumake && (cd $LLVMDIR/tools/$EXEC && gnumake)
|
Loading…
x
Reference in New Issue
Block a user