Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
luatex
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeXLive
luatex
Commits
53714de9
Commit
53714de9
authored
6 years ago
by
Luigi Scarso
Browse files
Options
Downloads
Patches
Plain Diff
Check C99 for Lua5.3; mandatory --jit to compile luajittex -- trunk
parent
a3ccbeb8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
build-shared.sh
+1
-1
1 addition, 1 deletion
build-shared.sh
build.sh
+1
-1
1 addition, 1 deletion
build.sh
source/libs/lua53/configure
+177
-0
177 additions, 0 deletions
source/libs/lua53/configure
source/libs/lua53/configure.ac
+1
-0
1 addition, 0 deletions
source/libs/lua53/configure.ac
with
180 additions
and
2 deletions
build-shared.sh
+
1
−
1
View file @
53714de9
...
...
@@ -225,7 +225,7 @@ then
fi
JITENABLE
=
JITENABLE
=
"--enable-luajittex=no --enable-mfluajit=no"
if
[
"
$BUILDJIT
"
=
"TRUE"
]
then
JITENABLE
=
"--enable-luajittex --without-system-luajit "
...
...
This diff is collapsed.
Click to expand it.
build.sh
+
1
−
1
View file @
53714de9
...
...
@@ -274,7 +274,7 @@ fi
cd
"
$B
"
JITENABLE
=
JITENABLE
=
"--enable-luajittex=no --enable-mfluajit=no"
if
[
"
$BUILDJIT
"
=
"TRUE"
]
then
JITENABLE
=
"--enable-luajittex --without-system-luajit "
...
...
This diff is collapsed.
Click to expand it.
source/libs/lua53/configure
+
177
−
0
View file @
53714de9
...
...
@@ -4827,6 +4827,183 @@ else
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for
$CC
option to accept ISO C99"
>
&5
$as_echo_n
"checking for
$CC
option to accept ISO C99... "
>
&6
;
}
if
${
ac_cv_prog_cc_c99
+
:
}
false
;
then
:
$as_echo_n
"(cached) "
>
&6
else
ac_cv_prog_cc_c99
=
no
ac_save_CC
=
$CC
cat
confdefs.h -
<<
_ACEOF
>conftest.
$ac_ext
/* end confdefs.h. */
#include <stdarg.h>
#include <stdbool.h>
#include <stdlib.h>
#include <wchar.h>
#include <stdio.h>
// Check varargs macros. These examples are taken from C99 6.10.3.5.
#define debug(...) fprintf (stderr, __VA_ARGS__)
#define showlist(...) puts (#__VA_ARGS__)
#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
static void
test_varargs_macros (void)
{
int x = 1234;
int y = 5678;
debug ("Flag");
debug ("X = %d
\n
", x);
showlist (The first, second, and third items.);
report (x>y, "x is %d but y is %d", x, y);
}
// Check long long types.
#define BIG64 18446744073709551615ull
#define BIG32 4294967295ul
#define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
#if !BIG_OK
your preprocessor is broken;
#endif
#if BIG_OK
#else
your preprocessor is broken;
#endif
static long long int bignum = -9223372036854775807LL;
static unsigned long long int ubignum = BIG64;
struct incomplete_array
{
int datasize;
double data[];
};
struct named_init {
int number;
const wchar_t *name;
double average;
};
typedef const char *ccp;
static inline int
test_restrict (ccp restrict text)
{
// See if C++-style comments work.
// Iterate through items via the restricted pointer.
// Also check for declarations in for loops.
for (unsigned int i = 0; *(text+i) != '
\0
'; ++i)
continue;
return 0;
}
// Check varargs and va_copy.
static void
test_varargs (const char *format, ...)
{
va_list args;
va_start (args, format);
va_list args_copy;
va_copy (args_copy, args);
const char *str;
int number;
float fnumber;
while (*format)
{
switch (*format++)
{
case 's': // string
str = va_arg (args_copy, const char *);
break;
case 'd': // int
number = va_arg (args_copy, int);
break;
case 'f': // float
fnumber = va_arg (args_copy, double);
break;
default:
break;
}
}
va_end (args_copy);
va_end (args);
}
int
main ()
{
// Check bool.
_Bool success = false;
// Check restrict.
if (test_restrict ("String literal") == 0)
success = true;
char *restrict newvar = "Another string";
// Check varargs.
test_varargs ("s, d' f .", "string", 65, 34.234);
test_varargs_macros ();
// Check flexible array members.
struct incomplete_array *ia =
malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
ia->datasize = 10;
for (int i = 0; i < ia->datasize; ++i)
ia->data[i] = i * 1.234;
// Check named initializers.
struct named_init ni = {
.number = 34,
.name = L"Test wide string",
.average = 543.34343,
};
ni.number = 58;
int dynamic_array[ni.number];
dynamic_array[ni.number - 1] = 543;
// work around unused variable warnings
return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
|| dynamic_array[ni.number - 1] != 543);
;
return 0;
}
_ACEOF
for
ac_arg
in
''
-std
=
gnu99
-std
=
c99
-c99
-AC99
-D_STDC_C99
=
-qlanglvl
=
extc99
do
CC
=
"
$ac_save_CC
$ac_arg
"
if
ac_fn_c_try_compile
"
$LINENO
"
;
then
:
ac_cv_prog_cc_c99
=
$ac_arg
fi
rm
-f
core conftest.err conftest.
$ac_objext
test
"x
$ac_cv_prog_cc_c99
"
!=
"xno"
&&
break
done
rm
-f
conftest.
$ac_ext
CC
=
$ac_save_CC
fi
# AC_CACHE_VAL
case
"x
$ac_cv_prog_cc_c99
"
in
x
)
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: none needed"
>
&5
$as_echo
"none needed"
>
&6
;
}
;;
xno
)
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: unsupported"
>
&5
$as_echo
"unsupported"
>
&6
;
}
;;
*
)
CC
=
"
$CC
$ac_cv_prog_cc_c99
"
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_prog_cc_c99
"
>
&5
$as_echo
"
$ac_cv_prog_cc_c99
"
>
&6
;
}
;;
esac
if
test
"x
$ac_cv_prog_cc_c99
"
!=
xno
;
then
:
fi
if
test
-n
"
$ac_tool_prefix
"
;
then
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
set
dummy
${
ac_tool_prefix
}
ranlib
;
ac_word
=
$2
...
...
This diff is collapsed.
Click to expand it.
source/libs/lua53/configure.ac
+
1
−
0
View file @
53714de9
...
...
@@ -16,6 +16,7 @@ AC_CONFIG_MACRO_DIR([../../m4])
KPSE_BASIC([lua53])
AC_PROG_CC
AC_PROG_CC_C99
AC_PROG_RANLIB
AC_PROG_LN_S
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment