2019-09-09 00:19:33 -04:00
|
|
|
# frozen_string_literal: false
|
|
|
|
|
2019-09-18 10:31:53 -04:00
|
|
|
cxx = MakeMakefile["C++"]
|
2019-09-18 02:38:24 -04:00
|
|
|
|
2019-09-18 11:02:34 -04:00
|
|
|
ok = cxx.try_compile(<<~'begin', "") do |x|
|
2019-09-09 00:19:33 -04:00
|
|
|
#include "ruby/config.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
typedef int conftest[SIZEOF_LONG == sizeof(long) ? 1 : -1];
|
|
|
|
typedef int conftest[SIZEOF_VOIDP == sizeof(void*) ? 1 : -1];
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, const char** argv)
|
|
|
|
{
|
|
|
|
return !!argv[argc];
|
|
|
|
}
|
|
|
|
begin
|
|
|
|
# We are wiping ruby.h from the source because that header file is the
|
|
|
|
# subject we are going to test in this extension library.
|
|
|
|
x.sub! %<#include "ruby.h">, ''
|
|
|
|
end
|
|
|
|
|
2019-09-18 02:38:24 -04:00
|
|
|
if ok
|
2019-09-19 07:07:24 -04:00
|
|
|
$srcs = %w[cxxanyargs.cpp]
|
2019-11-22 04:39:39 -05:00
|
|
|
failures = Dir.glob($srcdir + "/failure*.cpp").map {|n| File.basename(n)}
|
|
|
|
$cleanfiles << "$(FAILURES:.cpp=.failed)"
|
|
|
|
create_makefile("-test-/cxxanyargs") do |mk|
|
|
|
|
mk << "FAILURES #{['=', failures].join(' ')}\n"
|
2020-01-30 18:00:56 -05:00
|
|
|
mk << ".IGNORE: $(FAILURES:.cpp=.o)\n" unless $mswin
|
2020-01-30 22:52:22 -05:00
|
|
|
mk
|
2019-11-22 04:39:39 -05:00
|
|
|
end
|
2019-09-09 00:19:33 -04:00
|
|
|
end
|