-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from commial/patch-1
Base: force the lastest TCC stable release(0.9.26)
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,11 @@ MAINTAINER Camille Mougey <[email protected]> | |
RUN apt-get -qq update && \ | ||
apt-get -qqy install python2.7 git make gcc libpython2.7-dev python-pyparsing python-llvm unzip | ||
|
||
# TCC | ||
# TCC release 0.9.26 | ||
RUN cd /opt && \ | ||
git clone http://repo.or.cz/tinycc.git tinycc && \ | ||
cd tinycc && \ | ||
git checkout d5e22108a0dc48899e44a158f91d5b3215eb7fe6 && \ | ||
./configure --disable-static && \ | ||
make && \ | ||
make install && \ | ||
|
@@ -60,4 +61,4 @@ USER miasm2 | |
|
||
# Default cmd | ||
WORKDIR /opt/miasm2/test | ||
CMD ["/usr/bin/python", "test_all.py", "-m"] | ||
CMD ["/usr/bin/python", "test_all.py", "-m"] |