search for: build_test

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

Did you mean: build&test
2019 Apr 14
1
Opus cmake build
...it then does not build a static library. The autotools build builds both by default, although --disable-shared or --disable-static may be used to disable them. Normally an installation would have both. How can both be built with cmake? Is it it necessary to build twice? When configured with -DBUILD_TESTING=ON, ctest runs only 2 tests if -DBUILD_SHARED_LIBS=ON was also used, or 4 tests without that option. How would someone run all 14 of the tests that are run using the autotools "make check"? I wouldn't expect fewer tests to be run when shared libraries are built; the autotools buil...
2007 Oct 06
4
Passing ERB block to helper
I''m trying to pass an ERB block to a helper, and I''m not able to achieve the results I want. The helper should take the block and incorporate it into some other text & html, before finally outputing it back to the ERB template. Here''s what I want: --helper-- def helper (a, b) yld = yield out = --some function of a, b, and yld-- out end --ERB-- <%
2012 Apr 03
1
"Failed to create rounding.h!" during make
...@for r in 0 1 3; do \ if $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o rounding -DEXTRA_ROUNDING=$$r -I. $(srcdir)/rounding.c >rounding.out 2>&1; then \ echo "#define EXTRA_ROUNDING $$r" >rounding.h; \ if test -f "$$HOME/build_farm/build_test.fns"; then \ echo "EXTRA_ROUNDING is $$r" >&2; \ fi; \ break; \ fi; \ done @rm -f rounding @if test -f rounding.h; then : ; else \ cat rounding.out 1>&2; \ ec...
2019 Apr 11
2
Opus cmake build
On Wed, Apr 10, 2019 at 5:30 PM Marcus Asteborg <xnorpx at outlook.com> wrote: > Hi Mark, > > Thanks for the feedback. > > By default CMake is building the static library in debug, to get other > things one has to explicit turn it on. > > Hi, By default CMake uses the "empty" build, which is used in combination with the environment variables CFLAGS and