2019-09-09 13:19:33 +09:00
|
|
|
# frozen_string_literal: false
|
|
|
|
|
2019-09-18 15:38:24 +09:00
|
|
|
cxx = MakeMakefile::CXX
|
|
|
|
|
2019-09-19 00:02:34 +09:00
|
|
|
ok = cxx.try_compile(<<~'begin', "") do |x|
|
2019-09-09 13:19:33 +09: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 15:38:24 +09:00
|
|
|
if ok
|
|
|
|
create_makefile("-test-/cxxanyargs")
|
2019-09-09 13:19:33 +09:00
|
|
|
end
|