mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
247ce0ca3a
v2: * Include tzmap.h in BUILT_SOURCES * Make per-file flags appear after user-supplied CXXFLAGS, so they can override optimization level. * Correct .o files used to define symbols exported by libm.a * Drop gcrt0.o mistakenly included in libgmon.a * Add missing line continuations in GMON_FILES value v3: * use per-file flags for .c compilation * override C{XX,}FLAGS, as they are set on the command line by top-level make v4: * Drop -Wno-error=write-strings from path_testsuite CXXFLAGS v5: * Update for changes in master - Add -fno-threadsafe-statics to CXX flags - Add hypotl.cc - Remove fenv.cc (in favour of newlib), add fenv.c stub - Add proc.5 manpage rules
14 lines
296 B
Plaintext
14 lines
296 B
Plaintext
proc winsup_version {} {
|
|
global env
|
|
global runtime_root
|
|
clone_output "\n[exec grep -a ^%%% $runtime_root/cygwin0.dll]\n"
|
|
if { [info exists env(CYGWIN)] } {
|
|
clone_output "CYGWIN=$env(CYGWIN)\n"
|
|
} else {
|
|
clone_output "CYGWIN=\n"
|
|
}
|
|
}
|
|
|
|
proc winsup_exit {} {
|
|
}
|