diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-08-22 21:03:07 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-08-22 21:03:07 -0700 |
commit | f4b1d25451e716325da7cf07ec7d4713b3f33567 (patch) | |
tree | 1dc966bfe6afa645b9c590d0d9679ccef342eae6 /emcc | |
parent | d231cb33833d89398935f6c11976c4607de9fc39 (diff) |
remove mentions of obsolete emld
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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") |