Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 3c8d4c7

Browse files
authored
Merge pull request #114 from bjones1/arm-support
Fix: Better ARM assembly support.
2 parents 1aacaea + 5a1a5bf commit 3c8d4c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bookserver/internal/feedback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def _platform_edit(
250250
ext = os.path.splitext(source_path)[1]
251251
if ext == ".c":
252252
fmt = '#line 1 "box {}"\n'
253-
elif ext == ".s":
253+
elif ext == ".s" or ext == ".S":
254254
# I can't get this to work in the `gnu assembler <https://gcc.gnu.org/onlinedocs/cpp/Line-Control.html>`_. I tried:
255255
#
256256
# - From Section 4.11 (Misc directives):

0 commit comments

Comments
 (0)