search for: fsources

Displaying 2 results from an estimated 2 matches for "fsources".

Did you mean: sources
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 inc...
2017 Feb 03
3
RFC: Add a way to interleave source code in assembler output
Dear llvm/clang community, I'm interested in adding a way to emit source code interleaved in the output of the assembler. - Introduction A feature that several compilers have and clang/llvm is missing is the possibility of interleaving source code in the assembler output (e.g. when using -S). This feature is useful for a number of reasons. For those users who are concerned with the quality