diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-30 19:59:17 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-30 19:59:17 +0000 |
commit | 04a6dfebb6b52532a1e0bd637899f1eba14e94c6 (patch) | |
tree | 72d4cfb6b675d357c8d6277d600d68c27af9510a /Makefile.target | |
parent | e1ce5e400a08b62100249d9a4f1cc26414c8675e (diff) | |
download | qemu-04a6dfebb6b52532a1e0bd637899f1eba14e94c6.tar.gz qemu-04a6dfebb6b52532a1e0bd637899f1eba14e94c6.tar.bz2 qemu-04a6dfebb6b52532a1e0bd637899f1eba14e94c6.zip |
linux-user: Add generic env variable handling
Adds support for qemu to modify target process environment
variables using -E and -U commandline switches. This replaces
eventually the -drop-ld-preload flag.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6484 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index a091ce961f..372d185931 100644 --- a/Makefile.target +++ b/Makefile.target @@ -320,7 +320,7 @@ CFLAGS+=-p endif OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \ - elfload.o linuxload.o uaccess.o + elfload.o linuxload.o uaccess.o envlist.o LIBS+= $(AIOLIBS) ifdef TARGET_HAS_BFLT OBJS+= flatload.o |