0.3.0; fix misconfigured nan tagging build, and update travis

This commit is contained in:
underscorediscovery 2020-05-28 09:57:29 -07:00
parent 2fc4be6e38
commit dd510c2995
14 changed files with 247 additions and 260 deletions

30
.travis.sh Normal file
View File

@ -0,0 +1,30 @@
#!/bin/bash
set -e
# This build script only builds mac or linux right now, for CI.
WREN_WD="projects/gmake"
if [ -n "$WREN_TARGET_MAC" ]
then
WREN_WD="projects/gmake.mac"
fi
WREN_PY="python3"
if [ -n "$WREN_PY_BINARY" ]
then
WREN_PY="$WREN_PY_BINARY"
fi
echo "using working directory '$WREN_WD' ..."
echo "using python binary '$WREN_PY' ..."
cd "$WREN_WD" && make config=debug_64bit-no-nan-tagging
cd ../../ && $WREN_PY ./util/test.py --suffix=_d
cd "$WREN_WD" && make config=debug_64bit
cd ../../ && $WREN_PY ./util/test.py --suffix=_d
cd "$WREN_WD" && make config=release_64bit-no-nan-tagging
cd ../../ && $WREN_PY ./util/test.py
cd "$WREN_WD" && make config=release_64bit
cd ../../ && $WREN_PY ./util/test.py

View File

@ -1,21 +1,13 @@
language: c
os:
- linux
- osx
compiler:
- gcc
- clang
env:
- WREN_OPTIONS="" CI_ARCHS="ci_64"
- WREN_OPTIONS="-DWREN_NAN_TAGGING=0" CI_ARCHS="ci_64"
# Automatically build and deploy docs.
jobs:
include:
- stage: deploy
script: bash util/deploy_docs_from_travis.sh
# Only deploy commits that land on master.
if: branch = master and type = push
- os: linux
- os: osx
env: WREN_TARGET_MAC=1
# Travis VMs are 64-bit but we compile both for 32 and 64 bit. To enable the
# 32-bit builds to work, we need gcc-multilib.
@ -24,17 +16,7 @@ addons:
packages:
- gcc-multilib
- g++-multilib
# These are needed for building and deploying the docs.
- python3-markdown
- python3-pygments
- python3-setuptools
- ruby-sass
# Can't do container-based builds for now because installing the custom
# Pygments lexer to generate the docs requires sudo. :( If that changes,
# uncomment the next line and delete the "sudo" and "dist" lines.
# sudo: false # Enable container-based builds.
sudo: required
dist: trusty
script: make WREN_CFLAGS=${WREN_OPTIONS} ${CI_ARCHS}
script: ./.travis.sh

View File

@ -14,17 +14,17 @@ ifeq ($(config),release_64bit)
else ifeq ($(config),release_32bit)
wren_cli_config = release_32bit
else ifeq ($(config),release_64bit-no-nan-tagging)
wren_cli_config = release_64bit-no-nan-tagging
else ifeq ($(config),debug_64bit)
wren_cli_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 ifeq ($(config),debug_64bit-no-nan-tagging)
wren_cli_config = debug_64bit-no-nan-tagging
else
$(error "invalid configuration $(config)")
@ -51,10 +51,10 @@ help:
@echo "CONFIGURATIONS:"
@echo " release_64bit"
@echo " release_32bit"
@echo " release_64bit-no-nan-tagging"
@echo " debug_64bit"
@echo " debug_32bit"
@echo " 64bit-no-nan-tagging_64bit"
@echo " 64bit-no-nan-tagging_32bit"
@echo " debug_64bit-no-nan-tagging"
@echo ""
@echo "TARGETS:"
@echo " all (default)"

View File

@ -51,6 +51,15 @@ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -O3 -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -O3
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 -s
else ifeq ($(config),release_64bit-no-nan-tagging)
TARGETDIR = ../../bin
TARGET = $(TARGETDIR)/wren_cli
OBJDIR = obj/64bit-no-nan-tagging/Release
DEFINES += -DNDEBUG -DWREN_NAN_TAGGING=0
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -O3 -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -O3
ALL_LDFLAGS += $(LDFLAGS) -s
else ifeq ($(config),debug_64bit)
TARGETDIR = ../../bin
TARGET = $(TARGETDIR)/wren_cli_d
@ -69,23 +78,14 @@ 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)
else ifeq ($(config),debug_64bit-no-nan-tagging)
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
TARGET = $(TARGETDIR)/wren_cli_d
OBJDIR = obj/64bit-no-nan-tagging/Debug
DEFINES += -DDEBUG -DWREN_NAN_TAGGING=0
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -g -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -g
ALL_LDFLAGS += $(LDFLAGS)
else
$(error "invalid configuration $(config)")

View File

@ -14,17 +14,17 @@ ifeq ($(config),release_64bit)
else ifeq ($(config),release_32bit)
wren_cli_config = release_32bit
else ifeq ($(config),release_64bit-no-nan-tagging)
wren_cli_config = release_64bit-no-nan-tagging
else ifeq ($(config),debug_64bit)
wren_cli_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 ifeq ($(config),debug_64bit-no-nan-tagging)
wren_cli_config = debug_64bit-no-nan-tagging
else
$(error "invalid configuration $(config)")
@ -51,10 +51,10 @@ help:
@echo "CONFIGURATIONS:"
@echo " release_64bit"
@echo " release_32bit"
@echo " release_64bit-no-nan-tagging"
@echo " debug_64bit"
@echo " debug_32bit"
@echo " 64bit-no-nan-tagging_64bit"
@echo " 64bit-no-nan-tagging_32bit"
@echo " debug_64bit-no-nan-tagging"
@echo ""
@echo "TARGETS:"
@echo " all (default)"

View File

@ -59,6 +59,15 @@ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -O3 -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -O3
ALL_LDFLAGS += $(LDFLAGS) -m32
else ifeq ($(config),release_64bit-no-nan-tagging)
TARGETDIR = ../../bin
TARGET = $(TARGETDIR)/wren_cli
OBJDIR = obj/64bit-no-nan-tagging/Release
DEFINES += -DNDEBUG -DWREN_NAN_TAGGING=0 -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -O3 -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -O3
ALL_LDFLAGS += $(LDFLAGS)
else ifeq ($(config),debug_64bit)
TARGETDIR = ../../bin
TARGET = $(TARGETDIR)/wren_cli_d
@ -77,23 +86,14 @@ 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)
else ifeq ($(config),debug_64bit-no-nan-tagging)
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
TARGET = $(TARGETDIR)/wren_cli_d
OBJDIR = obj/64bit-no-nan-tagging/Debug
DEFINES += -DDEBUG -DWREN_NAN_TAGGING=0 -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -g -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -g
ALL_LDFLAGS += $(LDFLAGS)
else
$(error "invalid configuration $(config)")

View File

@ -14,17 +14,17 @@ ifeq ($(config),release_64bit)
else ifeq ($(config),release_32bit)
wren_cli_config = release_32bit
else ifeq ($(config),release_64bit-no-nan-tagging)
wren_cli_config = release_64bit-no-nan-tagging
else ifeq ($(config),debug_64bit)
wren_cli_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 ifeq ($(config),debug_64bit-no-nan-tagging)
wren_cli_config = debug_64bit-no-nan-tagging
else
$(error "invalid configuration $(config)")
@ -51,10 +51,10 @@ help:
@echo "CONFIGURATIONS:"
@echo " release_64bit"
@echo " release_32bit"
@echo " release_64bit-no-nan-tagging"
@echo " debug_64bit"
@echo " debug_32bit"
@echo " 64bit-no-nan-tagging_64bit"
@echo " 64bit-no-nan-tagging_32bit"
@echo " debug_64bit-no-nan-tagging"
@echo ""
@echo "TARGETS:"
@echo " all (default)"

View File

@ -51,6 +51,15 @@ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -O3 -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -O3
ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 -s
else ifeq ($(config),release_64bit-no-nan-tagging)
TARGETDIR = ../../bin
TARGET = $(TARGETDIR)/wren_cli
OBJDIR = obj/64bit-no-nan-tagging/Release
DEFINES += -DNDEBUG -DWREN_NAN_TAGGING=0 -D_GNU_SOURCE
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -O3 -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -O3
ALL_LDFLAGS += $(LDFLAGS) -s
else ifeq ($(config),debug_64bit)
TARGETDIR = ../../bin
TARGET = $(TARGETDIR)/wren_cli_d
@ -69,23 +78,14 @@ 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)
else ifeq ($(config),debug_64bit-no-nan-tagging)
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
TARGET = $(TARGETDIR)/wren_cli_d
OBJDIR = obj/64bit-no-nan-tagging/Debug
DEFINES += -DDEBUG -DWREN_NAN_TAGGING=0 -D_GNU_SOURCE
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -g -std=c99
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -g
ALL_LDFLAGS += $(LDFLAGS)
else
$(error "invalid configuration $(config)")

View File

@ -1,6 +1,6 @@
workspace "wren-cli"
configurations { "Release", "Debug", "64bit-no-nan-tagging" }
platforms { "64bit", "32bit" }
configurations { "Release", "Debug" }
platforms { "64bit", "32bit", "64bit-no-nan-tagging" }
defaultplatform "64bit"
location ("../" .. _ACTION)

View File

@ -5,28 +5,28 @@ 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
Debug|64bit-no-nan-tagging = Debug|64bit-no-nan-tagging
Release|32bit = Release|32bit
Release|64bit-no-nan-tagging = Release|64bit-no-nan-tagging
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
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit.Build.0 = Debug 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit-no-nan-tagging.ActiveCfg = Debug 64bit-no-nan-tagging|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit-no-nan-tagging.Build.0 = Debug 64bit-no-nan-tagging|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|32bit.ActiveCfg = Release 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|32bit.Build.0 = Release 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit.ActiveCfg = Release 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit.Build.0 = Release 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit-no-nan-tagging.ActiveCfg = Release 64bit-no-nan-tagging|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit-no-nan-tagging.Build.0 = Release 64bit-no-nan-tagging|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -17,6 +17,14 @@
<Configuration>Release 32bit</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release 64bit-no-nan-tagging|x64">
<Configuration>Release 64bit-no-nan-tagging</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release 64bit-no-nan-tagging|Win32">
<Configuration>Release 64bit-no-nan-tagging</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug 64bit|x64">
<Configuration>Debug 64bit</Configuration>
<Platform>x64</Platform>
@ -33,20 +41,12 @@
<Configuration>Debug 32bit</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="64bit-no-nan-tagging 64bit|x64">
<Configuration>64bit-no-nan-tagging 64bit</Configuration>
<ProjectConfiguration Include="Debug 64bit-no-nan-tagging|x64">
<Configuration>Debug 64bit-no-nan-tagging</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>
<ProjectConfiguration Include="Debug 64bit-no-nan-tagging|Win32">
<Configuration>Debug 64bit-no-nan-tagging</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
@ -70,6 +70,12 @@
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit-no-nan-tagging|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
@ -82,15 +88,9 @@
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'" Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'" 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>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
@ -103,16 +103,16 @@
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release 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)'=='Release 64bit-no-nan-tagging|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)'=='Debug 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)'=='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'">
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
@ -130,6 +130,13 @@
<TargetName>wren_cli</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit-no-nan-tagging|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>..\..\bin\</OutDir>
<IntDir>obj\64bit-no-nan-tagging\Release\</IntDir>
<TargetName>wren_cli</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit|x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>..\..\bin\</OutDir>
@ -144,18 +151,11 @@
<TargetName>wren_cli_d</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'">
<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>
<IntDir>obj\64bit-no-nan-tagging\Debug\</IntDir>
<TargetName>wren_cli_d</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit|x64'">
@ -202,6 +202,28 @@
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit-no-nan-tagging|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>NDEBUG;WREN_NAN_TAGGING=0;_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>Full</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<MinimalRebuild>false</MinimalRebuild>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<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)'=='Debug 64bit|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
@ -240,36 +262,21 @@
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>DEBUG;WREN_NAN_TAGGING=0;_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>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<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>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<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>

View File

@ -5,28 +5,28 @@ 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
Debug|64bit-no-nan-tagging = Debug|64bit-no-nan-tagging
Release|32bit = Release|32bit
Release|64bit-no-nan-tagging = Release|64bit-no-nan-tagging
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
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit.Build.0 = Debug 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit-no-nan-tagging.ActiveCfg = Debug 64bit-no-nan-tagging|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Debug|64bit-no-nan-tagging.Build.0 = Debug 64bit-no-nan-tagging|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|32bit.ActiveCfg = Release 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|32bit.Build.0 = Release 32bit|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit.ActiveCfg = Release 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit.Build.0 = Release 64bit|x64
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit-no-nan-tagging.ActiveCfg = Release 64bit-no-nan-tagging|Win32
{F8A65189-E473-AC94-0D8D-9A3CF9B8E122}.Release|64bit-no-nan-tagging.Build.0 = Release 64bit-no-nan-tagging|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -17,6 +17,14 @@
<Configuration>Release 32bit</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release 64bit-no-nan-tagging|x64">
<Configuration>Release 64bit-no-nan-tagging</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release 64bit-no-nan-tagging|Win32">
<Configuration>Release 64bit-no-nan-tagging</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug 64bit|x64">
<Configuration>Debug 64bit</Configuration>
<Platform>x64</Platform>
@ -33,20 +41,12 @@
<Configuration>Debug 32bit</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="64bit-no-nan-tagging 64bit|x64">
<Configuration>64bit-no-nan-tagging 64bit</Configuration>
<ProjectConfiguration Include="Debug 64bit-no-nan-tagging|x64">
<Configuration>Debug 64bit-no-nan-tagging</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>
<ProjectConfiguration Include="Debug 64bit-no-nan-tagging|Win32">
<Configuration>Debug 64bit-no-nan-tagging</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
@ -70,6 +70,12 @@
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit-no-nan-tagging|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
@ -82,15 +88,9 @@
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'" Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'" 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>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
@ -103,16 +103,16 @@
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release 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)'=='Release 64bit-no-nan-tagging|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)'=='Debug 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)'=='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'">
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
@ -130,6 +130,13 @@
<TargetName>wren_cli</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit-no-nan-tagging|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>..\..\bin\</OutDir>
<IntDir>obj\64bit-no-nan-tagging\Release\</IntDir>
<TargetName>wren_cli</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit|x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>..\..\bin\</OutDir>
@ -144,18 +151,11 @@
<TargetName>wren_cli_d</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'">
<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>
<IntDir>obj\64bit-no-nan-tagging\Debug\</IntDir>
<TargetName>wren_cli_d</TargetName>
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit|x64'">
@ -202,6 +202,28 @@
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 64bit-no-nan-tagging|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>NDEBUG;WREN_NAN_TAGGING=0;_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>Full</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<MinimalRebuild>false</MinimalRebuild>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<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)'=='Debug 64bit|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
@ -240,36 +262,21 @@
<AdditionalOptions>/OPT:NOREF %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='64bit-no-nan-tagging 64bit|x64'">
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 64bit-no-nan-tagging|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>DEBUG;WREN_NAN_TAGGING=0;_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>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<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>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<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>

View File

@ -548,47 +548,6 @@
};
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 = {
@ -600,13 +559,14 @@
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
DEBUG,
"WREN_NAN_TAGGING=0",
"_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/Debug;
OBJROOT = "obj/64bit-no-nan-tagging/Debug";
ONLY_ACTIVE_ARCH = YES;
SYMROOT = ../../bin;
USER_HEADER_SEARCH_PATHS = (
@ -630,13 +590,14 @@
GCC_OPTIMIZATION_LEVEL = fast;
GCC_PREPROCESSOR_DEFINITIONS = (
NDEBUG,
"WREN_NAN_TAGGING=0",
"_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/Release;
OBJROOT = "obj/64bit-no-nan-tagging/Release";
ONLY_ACTIVE_ARCH = NO;
SYMROOT = ../../bin;
USER_HEADER_SEARCH_PATHS = (
@ -657,12 +618,12 @@
0826494B5AAC743D2CF0D78B /* Build configuration list for PBXNativeTarget "wren_cli" */ = {
isa = XCConfigurationList;
buildConfigurations = (
16BEA9CB6D4C143D45C5280B /* Release */,
16BEA9CB6D4C143D45C5280B /* Release */,
16BEA9CB6D4C143D45C5280B /* Release */,
1377A691FE63CC83464994D1 /* Debug */,
1377A691FE63CC83464994D1 /* Debug */,
AD9B00157BBE53C702CCA655 /* 64bit-no-nan-tagging */,
AD9B00157BBE53C702CCA655 /* 64bit-no-nan-tagging */,
1377A691FE63CC83464994D1 /* Debug */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
@ -670,12 +631,12 @@
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "wren_cli" */ = {
isa = XCConfigurationList;
buildConfigurations = (
EC26AA7C1ACCFE6E740E58BC /* Release */,
EC26AA7C1ACCFE6E740E58BC /* Release */,
EC26AA7C1ACCFE6E740E58BC /* Release */,
D5E9D7C2E2A687345790F602 /* Debug */,
D5E9D7C2E2A687345790F602 /* Debug */,
58D2BC467A9E6978B7539286 /* 64bit-no-nan-tagging */,
58D2BC467A9E6978B7539286 /* 64bit-no-nan-tagging */,
D5E9D7C2E2A687345790F602 /* Debug */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;