Displaying 2 results from an estimated 2 matches for "fsource".
Did you mean:
source
2006 Oct 09
1
Problem building a DLL from Fortran 90 source under Windows (with solution)
...on is the empty list of dependencies in the pattern rule for
DLLs contained in the file MkRules:
%.dll:
@$(ECHO) EXPORTS > $*.def
@$(NM) $^ | $(SED) -n 's/^........ [BCDRT] _/ /p' >> $*.def
The dependencies list is constructed in the MakeDll file that contains
the following:
CFSOURCES=$(wildcard -f *.c *.f *.f90 *.f95)
CSOURCES=$(wildcard -f *.c)
CXXSOURCES=$(wildcard -f *.cc *.cpp *.C)
FSOURCES=$(wildcard -f *.f)
FCSOURCES=$(wildcard -f *.f90 *.f95)
OBJSA=$(foreach i,$(CSOURCES) $(FSOURCES) $(CXXSOURCES),$(basename $i).o)
Observe that the neither CFSOURCES nor FCSOURCES in in...
2017 Feb 03
3
RFC: Add a way to interleave source code in assembler output
...llvm.org/bugs/show_bug.cgi?id=16647
https://llvm.org/bugs/show_bug.cgi?id=17465 suggests some workarounds. A comment also points to a patch that I could not retrieve.
- Proposal
This proposal currently spans LLVM and clang.
-- clang/FE changes
For clang it would simply mean to add a flag like -fsource-asm or maybe extend the meaning of -fverbose-asm (like it will happen in GCC 7 but see some further comments below). This flag would make sure that the minimal amount of debug information is generated. Currently this means enabling -gline-tables-only in absence of any other debugging flag specified...