aboutsummaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-08-22 21:03:07 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-08-22 21:03:07 -0700
commitf4b1d25451e716325da7cf07ec7d4713b3f33567 (patch)
tree1dc966bfe6afa645b9c590d0d9679ccef342eae6 /emcc
parentd231cb33833d89398935f6c11976c4607de9fc39 (diff)
remove mentions of obsolete emld
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc10
1 files changed, 5 insertions, 5 deletions
diff --git a/emcc b/emcc
index 4df5c39e..07cf94d1 100755
--- a/emcc
+++ b/emcc
@@ -7,7 +7,7 @@ emcc - compiler helper script
emcc is a drop-in replacement for a compiler like gcc or clang.
Tell your build system to use this instead of the compiler, and similarly
-use emar, emld and emranlib instead of the same command without 'em'.
+use emar, emranlib etc. instead of the same command without 'em'.
Example uses:
@@ -32,10 +32,10 @@ Example uses:
SET(CMAKE_C_COMPILER "PATH/emcc")
SET(CMAKE_CXX_COMPILER "PATH/em++")
- SET(CMAKE_LINKER "PATH/emld")
- SET(CMAKE_CXX_LINKER "PATH/emld")
- SET(CMAKE_C_LINK_EXECUTABLE "PATH/emld")
- SET(CMAKE_CXX_LINK_EXECUTABLE "PATH/emld")
+ SET(CMAKE_LINKER "PATH/emcc")
+ SET(CMAKE_CXX_LINKER "PATH/emcc")
+ SET(CMAKE_C_LINK_EXECUTABLE "PATH/emcc")
+ SET(CMAKE_CXX_LINK_EXECUTABLE "PATH/emcc")
SET(CMAKE_AR "PATH/emar")
SET(CMAKE_RANLIB "PATH/emranlib")