Skip to content

Commit

Permalink
GH actions debug
Browse files Browse the repository at this point in the history
  • Loading branch information
skramm committed Apr 20, 2024
1 parent ef41347 commit b72a7ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,10 @@ BUILD/homog2d_test_d: misc/homog2d_test.cpp homog2d.hpp buildf
$(CXX) $(CXXFLAGS) -DNUMTYPE=double -O2 -o $@ $< $(LDFLAGS) 2>BUILD/homog2d_test_d.stderr

BUILD/homog2d_test_l: misc/homog2d_test.cpp homog2d.hpp buildf
$(CXX) $(CXXFLAGS) "-DHOMOG2D_INUMTYPE=long double" "-DNUMTYPE=long double" -O2 -o $@ $< $(LDFLAGS) 2>BUILD/homog2d_test_l.stderr
$(CXX) $(CXXFLAGS) "-DHOMOG2D_INUMTYPE=long double" "-DNUMTYPE=long double" -O2 -o $@ $< $(LDFLAGS)

# 20240421 : removed redirection because of GH actions failure, but fine on local machine (???)
# $(CXX) $(CXXFLAGS) "-DHOMOG2D_INUMTYPE=long double" "-DNUMTYPE=long double" -O2 -o $@ $< $(LDFLAGS) 2>BUILD/homog2d_test_l.stderr

.PHONY: test_bg_1 test_bn

Expand Down
2 changes: 1 addition & 1 deletion homog2d.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ See https://github.com/skramm/homog2d
#define HOMOG2D_MAXITER_PIP 5
#endif

#define HOMOG2D_VERSION "2.11.1"
#define HOMOG2D_VERSION "2.11.2"

// some MS environments seem to lack Pi definition, even if _USE_MATH_DEFINES is defined
#ifndef M_PI
Expand Down

0 comments on commit b72a7ab

Please sign in to comment.