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

Commit 35047e6

Browse files
committed
Making sure assembly files are compiled by an assembler that can be specified explicitly
1 parent 185a40d commit 35047e6

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)