diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-01-07 15:11:14 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-01-07 15:11:14 +0100 |
commit | c126ec03755c9cea578c3b6584ed64c7ba065232 (patch) | |
tree | 453ad5f807fdca1deaa8b16ee62853b414ba1e58 /demoscript/Util.py | |
parent | ICE-6082 added sndBufSize and rcvBufSize to UDPEndpointInfo (diff) | |
download | ice-c126ec03755c9cea578c3b6584ed64c7ba065232.tar.bz2 ice-c126ec03755c9cea578c3b6584ed64c7ba065232.tar.xz ice-c126ec03755c9cea578c3b6584ed64c7ba065232.zip |
Added Objective-C mapping
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index 6f6412f0699..88767def2a9 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -292,7 +292,7 @@ def configurePaths(): # Setting the library path is necessary for interpreters to find # the IceSSL library. # - if not isWin32() and iceHome != "/usr" and getMapping() in ["py", "rb", "php"]: + if not isWin32() and iceHome != "/usr" and getMapping() in ["py", "rb", "php", "objc"]: libDir = os.path.join(getIceDir("cpp"), "lib") if isUbuntu(): libDir = os.path.join(libDir, "x86_64-linux-gnu" if x64 else "i386-linux-gnu") @@ -731,7 +731,7 @@ def spawn(command, cwd = None, mapping = None): command = command.replace("java", "java -d64", 1) if javaCmd != "java": command = command.replace("java", javaCmd, 1) - elif mapping == "cpp": + elif (mapping == "cpp" or mapping == "objc"): if cwd != None: desc = os.path.join(cwd, desc) if isWin32(): |