Skip to content
This repository was archived by the owner on Nov 6, 2022. It is now read-only.

Commit 6ea8f0c

Browse files
authored
Merge pull request #11 from raoulstrackx/raoul/lvi_asm_fixup
Specifying assembler used
2 parents 185a40d + 35047e6 commit 6ea8f0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libunwind/src/CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Get sources
22

3+
enable_language(C CXX ASM)
4+
35
set(LIBUNWIND_CXX_SOURCES
46
libunwind.cpp
57
Unwind-EHABI.cpp)
@@ -73,7 +75,7 @@ set_source_files_properties(${LIBUNWIND_C_SOURCES}
7375
COMPILE_FLAGS "-std=c99")
7476
set_source_files_properties(${LIBUNWIND_ASM_SOURCES}
7577
PROPERTIES
76-
LANGUAGE C)
78+
LANGUAGE ASM)
7779

7880
set(LIBUNWIND_SOURCES
7981
${LIBUNWIND_CXX_SOURCES}

0 commit comments

Comments
 (0)