0.3.0; add compile config for no nan tagging (for CI, mainly)
This commit is contained in:
parent
23fd1535eb
commit
2fc4be6e38
@ -20,6 +20,12 @@ else ifeq ($(config),debug_64bit)
|
||||
else ifeq ($(config),debug_32bit)
|
||||
wren_cli_config = debug_32bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_64bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_64bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_32bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_32bit
|
||||
|
||||
else
|
||||
$(error "invalid configuration $(config)")
|
||||
endif
|
||||
@ -47,6 +53,8 @@ help:
|
||||
@echo " release_32bit"
|
||||
@echo " debug_64bit"
|
||||
@echo " debug_32bit"
|
||||
@echo " 64bit-no-nan-tagging_64bit"
|
||||
@echo " 64bit-no-nan-tagging_32bit"
|
||||
@echo ""
|
||||
@echo "TARGETS:"
|
||||
@echo " all (default)"
|
||||
|
||||
@ -69,6 +69,24 @@ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -g -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -g
|
||||
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_64bit)
|
||||
TARGETDIR = ../../bin
|
||||
TARGET = $(TARGETDIR)/wren_cli
|
||||
OBJDIR = obj/64bit/64bit-no-nan-tagging
|
||||
DEFINES +=
|
||||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64
|
||||
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64 -s
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_32bit)
|
||||
TARGETDIR = ../../bin
|
||||
TARGET = $(TARGETDIR)/wren_cli
|
||||
OBJDIR = obj/32bit/64bit-no-nan-tagging
|
||||
DEFINES +=
|
||||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32
|
||||
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 -s
|
||||
|
||||
else
|
||||
$(error "invalid configuration $(config)")
|
||||
endif
|
||||
|
||||
@ -20,6 +20,12 @@ else ifeq ($(config),debug_64bit)
|
||||
else ifeq ($(config),debug_32bit)
|
||||
wren_cli_config = debug_32bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_64bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_64bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_32bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_32bit
|
||||
|
||||
else
|
||||
$(error "invalid configuration $(config)")
|
||||
endif
|
||||
@ -47,6 +53,8 @@ help:
|
||||
@echo " release_32bit"
|
||||
@echo " debug_64bit"
|
||||
@echo " debug_32bit"
|
||||
@echo " 64bit-no-nan-tagging_64bit"
|
||||
@echo " 64bit-no-nan-tagging_32bit"
|
||||
@echo ""
|
||||
@echo "TARGETS:"
|
||||
@echo " all (default)"
|
||||
|
||||
@ -77,6 +77,24 @@ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -g -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -g
|
||||
ALL_LDFLAGS += $(LDFLAGS) -m32
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_64bit)
|
||||
TARGETDIR = ../../bin
|
||||
TARGET = $(TARGETDIR)/wren_cli
|
||||
OBJDIR = obj/64bit/64bit-no-nan-tagging
|
||||
DEFINES += -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1
|
||||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64
|
||||
ALL_LDFLAGS += $(LDFLAGS) -m64
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_32bit)
|
||||
TARGETDIR = ../../bin
|
||||
TARGET = $(TARGETDIR)/wren_cli
|
||||
OBJDIR = obj/32bit/64bit-no-nan-tagging
|
||||
DEFINES += -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1
|
||||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32
|
||||
ALL_LDFLAGS += $(LDFLAGS) -m32
|
||||
|
||||
else
|
||||
$(error "invalid configuration $(config)")
|
||||
endif
|
||||
|
||||
@ -20,6 +20,12 @@ else ifeq ($(config),debug_64bit)
|
||||
else ifeq ($(config),debug_32bit)
|
||||
wren_cli_config = debug_32bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_64bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_64bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_32bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_32bit
|
||||
|
||||
else
|
||||
$(error "invalid configuration $(config)")
|
||||
endif
|
||||
@ -47,6 +53,8 @@ help:
|
||||
@echo " release_32bit"
|
||||
@echo " debug_64bit"
|
||||
@echo " debug_32bit"
|
||||
@echo " 64bit-no-nan-tagging_64bit"
|
||||
@echo " 64bit-no-nan-tagging_32bit"
|
||||
@echo ""
|
||||
@echo "TARGETS:"
|
||||
@echo " all (default)"
|
||||
|
||||
@ -69,6 +69,24 @@ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -g -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -g
|
||||
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_64bit)
|
||||
TARGETDIR = ../../bin
|
||||
TARGET = $(TARGETDIR)/wren_cli
|
||||
OBJDIR = obj/64bit/64bit-no-nan-tagging
|
||||
DEFINES += -D_GNU_SOURCE
|
||||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64
|
||||
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64 -s
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_32bit)
|
||||
TARGETDIR = ../../bin
|
||||
TARGET = $(TARGETDIR)/wren_cli
|
||||
OBJDIR = obj/32bit/64bit-no-nan-tagging
|
||||
DEFINES += -D_GNU_SOURCE
|
||||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -std=c99
|
||||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32
|
||||
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 -s
|
||||
|
||||
else
|
||||
$(error "invalid configuration $(config)")
|
||||
endif
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
workspace "wren-cli"
|
||||
configurations { "Release", "Debug" }
|
||||
configurations { "Release", "Debug", "64bit-no-nan-tagging" }
|
||||
platforms { "64bit", "32bit" }
|
||||
defaultplatform "64bit"
|
||||
location ("../" .. _ACTION)
|
||||
@ -13,6 +13,9 @@ workspace "wren-cli"
|
||||
defines { "NDEBUG" }
|
||||
optimize "Full"
|
||||
|
||||
filter "platforms:64bit-no-nan-tagging"
|
||||
defines { "WREN_NAN_TAGGING=0" }
|
||||
|
||||
filter "platforms:32bit"
|
||||
architecture "x86"
|
||||
|
||||
|
||||
@ -5,14 +5,20 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wren_cli", "wren_cli.vcxpro
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
64bit-no-nan-tagging|64bit = 64bit-no-nan-tagging|64bit
|
||||
Debug|64bit = Debug|64bit
|
||||
Release|64bit = Release|64bit
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
64bit-no-nan-tagging|32bit = 64bit-no-nan-tagging|32bit
|
||||
Debug|32bit = Debug|32bit
|
||||
Release|32bit = Release|32bit
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|32bit.ActiveCfg = 64bit-no-nan-tagging 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|32bit.Build.0 = 64bit-no-nan-tagging 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|64bit.ActiveCfg = 64bit-no-nan-tagging 64bit|x64
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|64bit.Build.0 = 64bit-no-nan-tagging 64bit|x64
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|32bit.ActiveCfg = Debug 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|32bit.Build.0 = Debug 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit.ActiveCfg = Debug 64bit|x64
|
||||
|
||||
@ -33,13 +33,29 @@
|
||||
<Configuration>Debug 32bit</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 64bit|x64">
|
||||
<Configuration>64bit-no-nan-tagging 64bit</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 64bit|Win32">
|
||||
<Configuration>64bit-no-nan-tagging 64bit</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 32bit|x64">
|
||||
<Configuration>64bit-no-nan-tagging 32bit</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 32bit|Win32">
|
||||
<Configuration>64bit-no-nan-tagging 32bit</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}</ProjectGuid>
|
||||
<IgnoreWarnCompileDuplicatedFilename>true</IgnoreWarnCompileDuplicatedFilename>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>wren_cli</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit|x64'" Label="Configuration">
|
||||
@ -66,6 +82,18 @@
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
@ -81,6 +109,12 @@
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug 32bit|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
@ -110,6 +144,20 @@
|
||||
<TargetName>wren_cli_d</TargetName>
|
||||
<TargetExt>.exe</TargetExt>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>..\..\bin\</OutDir>
|
||||
<IntDir>obj\64bit\64bit-no-nan-tagging\</IntDir>
|
||||
<TargetName>wren_cli</TargetName>
|
||||
<TargetExt>.exe</TargetExt>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>..\..\bin\</OutDir>
|
||||
<IntDir>obj\32bit\64bit-no-nan-tagging\</IntDir>
|
||||
<TargetName>wren_cli</TargetName>
|
||||
<TargetExt>.exe</TargetExt>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
@ -192,6 +240,40 @@
|
||||
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\src\cli;..\..\src\module;..\..\deps\wren\include;..\..\deps\wren\src\vm;..\..\deps\wren\src\optional;..\..\deps\libuv\include;..\..\deps\libuv\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<AdditionalDependencies>imm32.lib;winmm.lib;version.lib;wldap32.lib;ws2_32.lib;psapi.lib;iphlpapi.lib;userenv.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\src\cli;..\..\src\module;..\..\deps\wren\include;..\..\deps\wren\src\vm;..\..\deps\wren\src\optional;..\..\deps\libuv\include;..\..\deps\libuv\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<AdditionalDependencies>imm32.lib;winmm.lib;version.lib;wldap32.lib;ws2_32.lib;psapi.lib;iphlpapi.lib;userenv.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\deps\libuv\include\uv.h" />
|
||||
<ClInclude Include="..\..\deps\libuv\include\uv\aix.h" />
|
||||
|
||||
@ -5,14 +5,20 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wren_cli", "wren_cli.vcxpro
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
64bit-no-nan-tagging|64bit = 64bit-no-nan-tagging|64bit
|
||||
Debug|64bit = Debug|64bit
|
||||
Release|64bit = Release|64bit
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
64bit-no-nan-tagging|32bit = 64bit-no-nan-tagging|32bit
|
||||
Debug|32bit = Debug|32bit
|
||||
Release|32bit = Release|32bit
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|32bit.ActiveCfg = 64bit-no-nan-tagging 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|32bit.Build.0 = 64bit-no-nan-tagging 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|64bit.ActiveCfg = 64bit-no-nan-tagging 64bit|x64
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.64bit-no-nan-tagging|64bit.Build.0 = 64bit-no-nan-tagging 64bit|x64
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|32bit.ActiveCfg = Debug 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|32bit.Build.0 = Debug 32bit|Win32
|
||||
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit.ActiveCfg = Debug 64bit|x64
|
||||
|
||||
@ -33,6 +33,22 @@
|
||||
<Configuration>Debug 32bit</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 64bit|x64">
|
||||
<Configuration>64bit-no-nan-tagging 64bit</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 64bit|Win32">
|
||||
<Configuration>64bit-no-nan-tagging 64bit</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 32bit|x64">
|
||||
<Configuration>64bit-no-nan-tagging 32bit</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="64bit-no-nan-tagging 32bit|Win32">
|
||||
<Configuration>64bit-no-nan-tagging 32bit</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}</ProjectGuid>
|
||||
@ -66,6 +82,18 @@
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
@ -81,6 +109,12 @@
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug 32bit|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
@ -110,6 +144,20 @@
|
||||
<TargetName>wren_cli_d</TargetName>
|
||||
<TargetExt>.exe</TargetExt>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>..\..\bin\</OutDir>
|
||||
<IntDir>obj\64bit\64bit-no-nan-tagging\</IntDir>
|
||||
<TargetName>wren_cli</TargetName>
|
||||
<TargetExt>.exe</TargetExt>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>..\..\bin\</OutDir>
|
||||
<IntDir>obj\32bit\64bit-no-nan-tagging\</IntDir>
|
||||
<TargetName>wren_cli</TargetName>
|
||||
<TargetExt>.exe</TargetExt>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
@ -192,6 +240,40 @@
|
||||
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\src\cli;..\..\src\module;..\..\deps\wren\include;..\..\deps\wren\src\vm;..\..\deps\wren\src\optional;..\..\deps\libuv\include;..\..\deps\libuv\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<AdditionalDependencies>imm32.lib;winmm.lib;version.lib;wldap32.lib;ws2_32.lib;psapi.lib;iphlpapi.lib;userenv.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 32bit|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\src\cli;..\..\src\module;..\..\deps\wren\include;..\..\deps\wren\src\vm;..\..\deps\wren\src\optional;..\..\deps\libuv\include;..\..\deps\libuv\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<AdditionalDependencies>imm32.lib;winmm.lib;version.lib;wldap32.lib;ws2_32.lib;psapi.lib;iphlpapi.lib;userenv.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\deps\libuv\include\uv.h" />
|
||||
<ClInclude Include="..\..\deps\libuv\include\uv\aix.h" />
|
||||
|
||||
@ -548,6 +548,47 @@
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
58D2BC467A9E6978B7539286 /* 64bit-no-nan-tagging */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_DARWIN_USE_64_BIT_INODE=1",
|
||||
"_DARWIN_UNLIMITED_SELECT=1",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
OBJROOT = "obj/32bit/64bit-no-nan-tagging";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = ../../bin;
|
||||
USER_HEADER_SEARCH_PATHS = (
|
||||
../../src/cli,
|
||||
../../src/module,
|
||||
../../deps/wren/include,
|
||||
../../deps/wren/src/vm,
|
||||
../../deps/wren/src/optional,
|
||||
../../deps/libuv/include,
|
||||
../../deps/libuv/src,
|
||||
);
|
||||
};
|
||||
name = "64bit-no-nan-tagging";
|
||||
};
|
||||
AD9B00157BBE53C702CCA655 /* 64bit-no-nan-tagging */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = ../../bin;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = wren_cli;
|
||||
};
|
||||
name = "64bit-no-nan-tagging";
|
||||
};
|
||||
D5E9D7C2E2A687345790F602 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
@ -620,6 +661,8 @@
|
||||
16BEA9CB6D4C143D45C5280B /* Release */,
|
||||
1377A691FE63CC83464994D1 /* Debug */,
|
||||
1377A691FE63CC83464994D1 /* Debug */,
|
||||
AD9B00157BBE53C702CCA655 /* 64bit-no-nan-tagging */,
|
||||
AD9B00157BBE53C702CCA655 /* 64bit-no-nan-tagging */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
@ -631,6 +674,8 @@
|
||||
EC26AA7C1ACCFE6E740E58BC /* Release */,
|
||||
D5E9D7C2E2A687345790F602 /* Debug */,
|
||||
D5E9D7C2E2A687345790F602 /* Debug */,
|
||||
58D2BC467A9E6978B7539286 /* 64bit-no-nan-tagging */,
|
||||
58D2BC467A9E6978B7539286 /* 64bit-no-nan-tagging */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user