diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-18 17:41:27 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-18 17:41:27 +0100 |
| commit | 5d5cfdef6bbf71ca38b8fbeeb78ba57731a66a75 (patch) | |
| tree | 615a9e0325edb9b28ca0af0d41b357dfc6d7f4df /miasm2/jitter/Jittcc.c | |
| parent | 798ae526f4a1862ce189f073cbd2bbe27c813ed5 (diff) | |
| download | miasm-5d5cfdef6bbf71ca38b8fbeeb78ba57731a66a75.tar.gz miasm-5d5cfdef6bbf71ca38b8fbeeb78ba57731a66a75.zip | |
TCC install: use --disable-static instead of sed//-fPIC/ (see #36)
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/Jittcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/Jittcc.c b/miasm2/jitter/Jittcc.c index 476b2048..a1310477 100644 --- a/miasm2/jitter/Jittcc.c +++ b/miasm2/jitter/Jittcc.c @@ -168,7 +168,7 @@ PyObject* tcc_compil(PyObject* self, PyObject* args) fprintf(stderr, "%s\n", func_code); exit(1); } - /* XXX use tinycc devel with -fPIC patch in makefile */ + /* XXX configure tinycc install with --disable-static */ if (tcc_relocate(tcc_state, TCC_RELOCATE_AUTO) < 0) { fprintf(stderr, "tcc relocate error\n"); exit(1); |