Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2016-02-09 00:35:12 +0300
committerSoumith Chintala <soumith@gmail.com>2016-02-09 00:35:12 +0300
commit89c534b73391f37f24aafdc7905e94cc77c1864e (patch)
treebf041bf9675e28fff5340e3697c1041b1f5ee605
parent652989119b25aac450536838347d10fba71d71d2 (diff)
parent659133bab7eff5f445a7aa573adfe24485f631dd (diff)
Merge pull request #26 from rphillips/fix_luajit2_1_32bit
fix 32bit builds and PIC strangeness
-rw-r--r--luajit-2.1/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/luajit-2.1/CMakeLists.txt b/luajit-2.1/CMakeLists.txt
index efd5f4f..7e9200f 100644
--- a/luajit-2.1/CMakeLists.txt
+++ b/luajit-2.1/CMakeLists.txt
@@ -321,8 +321,8 @@ if (MSVC)
add_buildvm_target ( lj_vm.obj peobj )
set (LJ_VM_SRC ${CMAKE_CURRENT_BINARY_DIR}/lj_vm.obj)
else ()
- add_buildvm_target ( lj_vm.s ${LJVM_MODE} )
- set (LJ_VM_SRC ${CMAKE_CURRENT_BINARY_DIR}/lj_vm.s)
+ add_buildvm_target ( lj_vm.S ${LJVM_MODE} )
+ set (LJ_VM_SRC ${CMAKE_CURRENT_BINARY_DIR}/lj_vm.S)
endif ()
add_buildvm_target ( lj_ffdef.h ffdef ${SRC_LJLIB} )
add_buildvm_target ( lj_bcdef.h bcdef ${SRC_LJLIB} )