File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,4 @@ cd /tmp || die
1717 tar xzf arc_gnu_2017.09_prebuilt_elf32_le_linux_install.tar.gz || die
1818 export PATH=/tmp/arc_gnu_2017.09_prebuilt_elf32_le_linux_install/bin:$PATH || die
1919 arc-elf32-gcc --version || die
20- sudo apt-get install doxygen || die
21- sudo pip install --upgrade pip || die
22- sudo pip install git+https://github.com/sphinx-doc/sphinx || die
23- sudo pip install breathe || die
24- sudo pip install recommonmark || die
25- sudo pip install sphinx_rtd_theme || die
2620}
Original file line number Diff line number Diff line change @@ -43,15 +43,19 @@ def embarc_makefile(paths): # to confirm the file is a embarc makefile
4343 print ("application[%s]=" % k ,v )
4444 pathin = v .replace ("\\ " , "/" )
4545 os .chdir (pathin )
46+ print ("make configuration: " ,sys .argv [1 ])
47+ print ("start compile" )
4648 os .system ("make " + sys .argv [1 ]+ " clean" )
4749
4850 if os .system ("make " + sys .argv [1 ]+ " -k" ) != 0 :
4951
5052 result [k ] = 1
5153 pathout = cwd_path
5254 os .chdir (pathout )
55+ print ("Compilation result" )
5356 print (result )
5457 for (k ,v ) in result .items ():
5558 if v == 1 :
59+ print ("build failed" )
5660 sys .exit (1 )
5761 sys .exit (0 )
You can’t perform that action at this time.
0 commit comments