search for: speciy

Displaying 4 results from an estimated 4 matches for "speciy".

Did you mean: specify
2004 Jun 03
1
GAM question
...if so, perhaps it was a GAM problem. I also tried a logistic, weighted GAM with one variable to see if that would work. My next step while I wait to hear back from the list is to try a dummy dataset that is small to see if a weighted, logistic GAM with seven variables will work at all or if I am speciying the model correctly. Would anyone be willing to have my dataset sent so they can check it out if that would help solve the issue? Thank you! Hillary (hrobison at unr.nevada.edu) > # trial, all, weighted > topo8 <- gam(PA ~ s(SLOPE10) + s(ASPECT10) + s(GYADEMPLUS) + s(TRI) + s(HLI) +...
2020 Mar 27
2
[PATCH v2 1/5] Kbuild: add support for clang builds
...SEMBLY__ -Wa,--noexecstack $(KLIBCCFLAGS) KLIBCSTRIPFLAGS += --strip-all -R .comment -R .note +# KLIBCLIBGCC_DEF appears to be unnecessary since klibc never uses -nostdlib +# when linking binaries, which means that any compiler specific libraries +# should be available automatically, no need to speciy an explicit path. +# Don't attempt to set it if we are using clang. +ifneq ($(cc-name),clang) KLIBCLIBGCC_DEF := $(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-libgcc) +endif KLIBCLIBGCC ?= $(KLIBCLIBGCC_DEF) KLIBCCRT0 := $(KLIBCOBJ)/arch/$(KLIBCARCHDIR)/crt0.o KLIBCLIBC := $(KLI...
2020 Mar 28
0
[PATCH v2 1/5] Kbuild: add support for clang builds
...k $(KLIBCCFLAGS) > KLIBCSTRIPFLAGS += --strip-all -R .comment -R .note > > +# KLIBCLIBGCC_DEF appears to be unnecessary since klibc never uses -nostdlib > +# when linking binaries, which means that any compiler specific libraries > +# should be available automatically, no need to speciy an explicit path. > +# Don't attempt to set it if we are using clang. > +ifneq ($(cc-name),clang) > KLIBCLIBGCC_DEF := $(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-libgcc) > +endif Seems like this should also check that cc-name is "gcc", then. > KLIBCLIBGCC ?= $(KLIB...
2020 Mar 27
12
[PATCH 0/5] Clang compatibility patches
This is a series of patches for clang compatibility: - Using flags needed flags and removing unsupported flags. - Adding support for clang's LLD linker. - Removing a variety of warnings. Bill Wendling (3): [klibc] Kbuild: use "libc.a" with clang [klibc] Kbuild: Add "-fcommon" for clang builds [klibc] Clean up clang warnings Michael Davidson (1): [klibc] Kbuild: