Skip to content

Commit

Permalink
update xcframework
Browse files Browse the repository at this point in the history
  • Loading branch information
wtholliday committed Oct 17, 2024
1 parent 1f16e89 commit 36f8f02
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 35 deletions.
22 changes: 14 additions & 8 deletions luajit.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,44 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>libluajit_iOS_simulator.a</string>
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>libluajit_macos.a</string>
<string>libluajit_iOS_simulator.a</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>libluajit_macos.a</string>
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>libluajit_iOS_simulator.a</string>
<string>libluajit_macos.a</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>macos</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>libluajitA64.a</string>
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
Expand Down
9 changes: 6 additions & 3 deletions luajit.xcframework/ios-arm64/Headers/luaconf.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
** Configuration header.
** Copyright (C) 2005-2022 Mike Pall. See Copyright Notice in luajit.h
** Copyright (C) 2005-2023 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef luaconf_h
Expand Down Expand Up @@ -37,7 +37,6 @@
#endif
#define LUA_LROOT "/usr/local"
#define LUA_LUADIR "/lua/5.1/"
#define LUA_LJDIR "/luajit-2.1.0-beta3/"

#ifdef LUA_ROOT
#define LUA_JROOT LUA_ROOT
Expand All @@ -51,7 +50,11 @@
#define LUA_RCPATH
#endif

#define LUA_JPATH ";" LUA_JROOT "/share" LUA_LJDIR "?.lua"
#ifndef LUA_LJDIR
#define LUA_LJDIR LUA_JROOT "/share/luajit-2.1"
#endif

#define LUA_JPATH ";" LUA_LJDIR "/?.lua"
#define LUA_LLDIR LUA_LROOT "/share" LUA_LUADIR
#define LUA_LCDIR LUA_LROOT "/" LUA_LMULTILIB LUA_LUADIR
#define LUA_LLPATH ";" LUA_LLDIR "?.lua;" LUA_LLDIR "?/init.lua"
Expand Down
10 changes: 5 additions & 5 deletions luajit.xcframework/ios-arm64/Headers/luajit.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/
**
** Copyright (C) 2005-2022 Mike Pall. All rights reserved.
** Copyright (C) 2005-2023 Mike Pall. All rights reserved.
**
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -30,10 +30,10 @@

#include "lua.h"

#define LUAJIT_VERSION "LuaJIT 2.1.0-beta3"
#define LUAJIT_VERSION_NUM 20100 /* Version 2.1.0 = 02.01.00. */
#define LUAJIT_VERSION_SYM luaJIT_version_2_1_0_beta3
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2022 Mike Pall"
#define LUAJIT_VERSION "LuaJIT 2.1.1727870382"
#define LUAJIT_VERSION_NUM 20199 /* Deprecated. */
#define LUAJIT_VERSION_SYM luaJIT_version_2_1_1727870382
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2023 Mike Pall"
#define LUAJIT_URL "https://luajit.org/"

/* Modes for luaJIT_setmode. */
Expand Down
2 changes: 1 addition & 1 deletion luajit.xcframework/ios-arm64/Headers/lualib.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
** Standard library header.
** Copyright (C) 2005-2022 Mike Pall. See Copyright Notice in luajit.h
** Copyright (C) 2005-2023 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef _LUALIB_H
Expand Down
Binary file modified luajit.xcframework/ios-arm64/libluajitA64.a
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
** Configuration header.
** Copyright (C) 2005-2022 Mike Pall. See Copyright Notice in luajit.h
** Copyright (C) 2005-2023 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef luaconf_h
Expand Down Expand Up @@ -37,7 +37,6 @@
#endif
#define LUA_LROOT "/usr/local"
#define LUA_LUADIR "/lua/5.1/"
#define LUA_LJDIR "/luajit-2.1.0-beta3/"

#ifdef LUA_ROOT
#define LUA_JROOT LUA_ROOT
Expand All @@ -51,7 +50,11 @@
#define LUA_RCPATH
#endif

#define LUA_JPATH ";" LUA_JROOT "/share" LUA_LJDIR "?.lua"
#ifndef LUA_LJDIR
#define LUA_LJDIR LUA_JROOT "/share/luajit-2.1"
#endif

#define LUA_JPATH ";" LUA_LJDIR "/?.lua"
#define LUA_LLDIR LUA_LROOT "/share" LUA_LUADIR
#define LUA_LCDIR LUA_LROOT "/" LUA_LMULTILIB LUA_LUADIR
#define LUA_LLPATH ";" LUA_LLDIR "?.lua;" LUA_LLDIR "?/init.lua"
Expand Down
10 changes: 5 additions & 5 deletions luajit.xcframework/ios-arm64_x86_64-simulator/Headers/luajit.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/
**
** Copyright (C) 2005-2022 Mike Pall. All rights reserved.
** Copyright (C) 2005-2023 Mike Pall. All rights reserved.
**
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -30,10 +30,10 @@

#include "lua.h"

#define LUAJIT_VERSION "LuaJIT 2.1.0-beta3"
#define LUAJIT_VERSION_NUM 20100 /* Version 2.1.0 = 02.01.00. */
#define LUAJIT_VERSION_SYM luaJIT_version_2_1_0_beta3
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2022 Mike Pall"
#define LUAJIT_VERSION "LuaJIT 2.1.1727870382"
#define LUAJIT_VERSION_NUM 20199 /* Deprecated. */
#define LUAJIT_VERSION_SYM luaJIT_version_2_1_1727870382
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2023 Mike Pall"
#define LUAJIT_URL "https://luajit.org/"

/* Modes for luaJIT_setmode. */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
** Standard library header.
** Copyright (C) 2005-2022 Mike Pall. See Copyright Notice in luajit.h
** Copyright (C) 2005-2023 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef _LUALIB_H
Expand Down
Binary file not shown.
9 changes: 6 additions & 3 deletions luajit.xcframework/macos-arm64_x86_64/Headers/luaconf.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
** Configuration header.
** Copyright (C) 2005-2022 Mike Pall. See Copyright Notice in luajit.h
** Copyright (C) 2005-2023 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef luaconf_h
Expand Down Expand Up @@ -37,7 +37,6 @@
#endif
#define LUA_LROOT "/usr/local"
#define LUA_LUADIR "/lua/5.1/"
#define LUA_LJDIR "/luajit-2.1.0-beta3/"

#ifdef LUA_ROOT
#define LUA_JROOT LUA_ROOT
Expand All @@ -51,7 +50,11 @@
#define LUA_RCPATH
#endif

#define LUA_JPATH ";" LUA_JROOT "/share" LUA_LJDIR "?.lua"
#ifndef LUA_LJDIR
#define LUA_LJDIR LUA_JROOT "/share/luajit-2.1"
#endif

#define LUA_JPATH ";" LUA_LJDIR "/?.lua"
#define LUA_LLDIR LUA_LROOT "/share" LUA_LUADIR
#define LUA_LCDIR LUA_LROOT "/" LUA_LMULTILIB LUA_LUADIR
#define LUA_LLPATH ";" LUA_LLDIR "?.lua;" LUA_LLDIR "?/init.lua"
Expand Down
10 changes: 5 additions & 5 deletions luajit.xcframework/macos-arm64_x86_64/Headers/luajit.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/
**
** Copyright (C) 2005-2022 Mike Pall. All rights reserved.
** Copyright (C) 2005-2023 Mike Pall. All rights reserved.
**
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -30,10 +30,10 @@

#include "lua.h"

#define LUAJIT_VERSION "LuaJIT 2.1.0-beta3"
#define LUAJIT_VERSION_NUM 20100 /* Version 2.1.0 = 02.01.00. */
#define LUAJIT_VERSION_SYM luaJIT_version_2_1_0_beta3
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2022 Mike Pall"
#define LUAJIT_VERSION "LuaJIT 2.1.1727870382"
#define LUAJIT_VERSION_NUM 20199 /* Deprecated. */
#define LUAJIT_VERSION_SYM luaJIT_version_2_1_1727870382
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2023 Mike Pall"
#define LUAJIT_URL "https://luajit.org/"

/* Modes for luaJIT_setmode. */
Expand Down
2 changes: 1 addition & 1 deletion luajit.xcframework/macos-arm64_x86_64/Headers/lualib.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
** Standard library header.
** Copyright (C) 2005-2022 Mike Pall. See Copyright Notice in luajit.h
** Copyright (C) 2005-2023 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef _LUALIB_H
Expand Down
Binary file modified luajit.xcframework/macos-arm64_x86_64/libluajit_macos.a
Binary file not shown.

0 comments on commit 36f8f02

Please sign in to comment.