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
|
|
|
|
create_makefile("-test-/cxxanyargs")
|
2019-09-09 00:19:33 -04:00
|
|
|
end
|