Skip to content

Commit 38736a5

Browse files
Merge pull request #19374 from KDr2/cc-alter
ignore/remove *.dwo files generated by gcc fission
2 parents bb8a801 + f2674a2 commit 38736a5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
*.exe
1414
*.dll
15+
*.dwo
1516
*.do
1617
*.o
1718
*.obj

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ libjulia-release: $(build_shlibdir)/libjulia.$(JL_MAJOR_MINOR_SHLIB_EXT) $(PUBLI
283283
clean:
284284
-rm -fr $(build_shlibdir)/libjulia* $(build_shlibdir)/libccalltest*
285285
-rm -f $(BUILDDIR)/julia_flisp.boot $(BUILDDIR)/julia_flisp.boot.inc
286-
-rm -f $(BUILDDIR)/*.dbg.obj $(BUILDDIR)/*.o $(BUILDDIR)/*.$(SHLIB_EXT) $(BUILDDIR)/*.a
286+
-rm -f $(BUILDDIR)/*.dbg.obj $(BUILDDIR)/*.o $(BUILDDIR)/*.dwo $(BUILDDIR)/*.$(SHLIB_EXT) $(BUILDDIR)/*.a
287287
-rm -f $(BUILDDIR)/julia_version.h
288288

289289
clean-flisp:

src/julia_threads.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ static inline unsigned long JL_CONST_FUNC jl_thread_self(void)
156156
* we use only a compiler (signal) barrier and use the signal handler to do the
157157
* synchronization in order to lower the mutator overhead as much as possible.
158158
*
159-
* We use the compiler instrinsics to implement a similar API to the c11/c++11
159+
* We use the compiler intrinsics to implement a similar API to the c11/c++11
160160
* one instead of using it directly because,
161161
*
162162
* 1. We support GCC 4.7 and GCC add support for c11 atomics in 4.9.

0 commit comments

Comments
 (0)