Commit Graph

111 Commits

Author SHA1 Message Date
Holger Vogt 74a1a0b211 Update to Visual Studio 2019 2020-03-15 08:50:52 +01:00
Holger Vogt db281f63f3 add a manifest file
https://docs.microsoft.com/en-us/windows/win32/sbscs/application-manifests
one for i64 and x86 each
2019-11-30 11:38:34 +01:00
Holger Vogt 6598225ec0 Replace deprecated GetVersionExA by version helper functions
Add new macro _MSC_PLATFORM_TOOLSET to check for toolset
2019-11-30 11:38:25 +01:00
Holger Vogt 67f6fda216 Complete redesign of memory monitoring in resource.c.
Acquiring memory size is done by four functions
getMemorySize, getAvailableMemorySize, getPeakRSS,
and getCurrentRSS.
Time data are still obtained without code modifications.
2019-11-30 11:34:58 +01:00
Jim Monte 3874916948 [PATCH #56] New history buffering 2019-08-13 23:30:05 +02:00
dwarning f90295f46a remove last remainder of unused sensitivity analysis 2019-08-13 22:55:25 +02:00
Holger Vogt 9f40c2b584 add an icon to MS Windows VC exe 2018-12-17 23:03:27 +01:00
Holger Vogt 522af31788 unify stacke size reserved 4194304
stack size comitted 1048576
2018-10-13 18:20:09 +02:00
Holger Vogt 6d14d0904a add evtshared.h to the MSVC project files 2018-07-21 23:56:24 +02:00
Holger Vogt 8473c8e03c remove empty VMOSdelete() function 2018-05-04 20:34:00 +02:00
Holger Vogt b6a8613427 remove unused old sensitivity functions 2018-05-04 20:33:58 +02:00
Holger Vogt d9bc4a5b41 add src/spicelib/devices/vdmos to ngspice 2018-05-04 20:33:53 +02:00
rlar d981fb331b spicelib/devices/*, drop empty destroy functions 2018-04-15 07:13:06 +02:00
rlar 93b62297d8 devices/mos6, add missing files mos6del.c and mos6mdel.c
this is a plain copy from mos3
2018-02-02 22:53:43 +01:00
rlar c900cc8824 drop ngspice internal implementation of erfc()
which these days is guaranteed to be provided by <math.h>

note,
  our own implementation was incorrect anyway.
  it evaluated to
    erfc_ngspice(x) = erfc(fabs(x))
2017-10-28 12:38:32 +02:00
rlar 875cab6758 *.vcxproj, enable <GenerateDebugInformation>true 2016-10-22 20:10:21 +02:00
rlar edaded001a *.vcxproj, use <DebugInformationFormat>ProgramDatabase 2016-10-22 20:01:46 +02:00
rlar 96a35e0144 *.vcxproj, increase <WarningLevel>Level4 2016-10-22 20:01:30 +02:00
h_vogt 9f62057973 introduce include file "ngspice/randnumb.h" 2016-08-15 11:30:26 +02:00
rlar 4c60783e4d xspice, implement EVTdest() to fix xspice memory leaks 2016-05-07 15:50:34 +02:00
rlar 97cc400efb ngspice/evt.h, ngspice/enh.t, reduce scope of these include files 2016-05-07 15:36:43 +02:00
h_vogt 72d7bb9c8a introduce visualc/{*install*.bat,*.sln} and update howto file 2016-02-07 17:45:43 +01:00
h_vogt caee377fd3 visualc/, put flex/bison output files into tmp-bison/ 2016-02-07 17:45:42 +01:00
h_vogt 866bc36e3a visualc/*.vcxproj, <LargeAddressAware>true
allow access to
 4 GB memory of 32 bit ngspice on 64 bit Windows,
 8 TB for 64 bit ngspice.
2016-02-07 17:45:42 +01:00
rlar 9d99a06bcd dvec abstraction, #2/11, introduce `dvec_alloc()' 2015-12-28 20:34:42 +01:00
rlar 96f6ebfb80 visualc/*.vcxproj, win_bison.exe in CustomBuild instead of PreBuildEvent 2015-11-15 15:09:30 +01:00
rlar df601c5662 visualc/*.vcxproj, canonical directory structure for all project/configuration/platform tuples 2015-11-15 15:09:29 +01:00
rlar 5dbd9abd1c visualc/*.vcxproj, remove redundant $(ProjectDir) 2015-11-15 15:09:29 +01:00
rlar 8595790328 visualc/*.vcxproj, modernize usage of <PropertyGroup> 2015-11-15 15:09:29 +01:00
rlar 88dfddb76b visualc/*.vcxproj, use <TargetName> based default instead of explicit <OutputFile> 2015-11-15 15:09:29 +01:00
rlar ac4395d6fc visualc/*.vcxproj, conf.obj is actually $(IntDir)conf.obj 2015-11-15 15:09:29 +01:00
rlar 5b254d8148 visualc/*.vcxproj, migrate to visual studio 2015 2015-11-15 15:09:29 +01:00
rlar d482d821d3 visualc/*.vc*proj, polish <OpenMPSupport> 2015-11-15 15:09:29 +01:00
rlar f08817b827 visualc/*.vc*proj, sort the entries into a convenient order 2015-11-15 15:09:29 +01:00
rlar 6e5b177c85 visualc/*.vc*proj, unify, remove stray <PreprocessorDefinitions>...RELBUILD64 2015-11-15 15:09:29 +01:00
rlar a4388afa07 visualc/*.vc*proj, <PreprocessorDefinitions>, enable XSPICE 2015-11-15 15:09:28 +01:00
rlar ce7b36aeaa visualc/vngspice.vcxproj, reposition <PreBuildEvent> 2015-11-15 15:09:28 +01:00
rlar 55e5f5b936 visualc/vngspice.vcxproj, reposition <Message> 2015-11-15 15:09:28 +01:00
rlar 4cfbb5995f visualc/*.vc*proj, avoid warning, "if exists ... del ..."
(query-replace-regexp "CommandLine=\"del \\(.*\\).obj" "CommandLine=\"if exist \\1.obj del \\1.obj")
(query-replace-regexp "<Command>del \\(.*\\).obj" "<Command>if exist \\1.obj del \\1.obj")
2015-11-15 15:09:28 +01:00
rlar 63fdccdee8 visualc/vngspice.vcxproj, drop unused <CustomBuildStep> 2015-11-15 15:09:28 +01:00
rlar 949f69d6de visualc/*.vc*proj, drop ExcludeFromBuild="false" and <PreBuildEventUseInBuild..true
thats the default anyway
2015-11-15 15:09:28 +01:00
dwarning ffc60a7c64 vngspice.vcxproj, missing <TargetName> 2015-11-15 15:09:28 +01:00
rlar 6c4a87d530 visual*/*.vc*proj, unify <PreprocessorDefinitions>, drop stray XSPICE 2015-11-15 15:09:28 +01:00
rlar 4dfb60b6d9 vngspice.vcxproj, glue sequence of <PreBuildEvent> 2015-11-15 15:09:28 +01:00
rlar cee01b1d35 vngspice.vcxproj, unify, <PrecompiledHeader> and <CompileAsManaged> 2015-11-15 15:09:28 +01:00
dwarning f455d5b3fa vngspice.vc*proj, unify, remove stray <AdditionalLibraryDirectories>
"Visual Leak Detector"
2015-11-15 15:09:28 +01:00
rlar ba9fd345b2 visualc*/*.vc*proj, unify, `<LinkIncremental>=false...' 2015-11-15 15:09:28 +01:00
h_vogt 794bb5ee2f visualc*/*.vc*proj, unify, unset `<ExceptionHandling>' 2015-11-15 15:09:27 +01:00
h_vogt 2c1266d82e visualc*/*.vc*proj, unify, MinimalRebuild="false" 2015-11-15 15:09:27 +01:00
h_vogt d74da6aa95 *.vc*proj, polish Message/Description 2015-11-15 15:09:27 +01:00
rlar 8046ede515 *.vc*proj, fix path to the win_bison generated files 2015-11-15 15:09:27 +01:00
rlar f08437d53b *.vc*proj, add parse-bison.h entry 2015-11-15 15:09:27 +01:00
rlar 250215cb79 *.vc*proj, invoke win_bison.exe 2015-11-15 15:09:27 +01:00
rlar ea5efcf27d *.vc*proj, sort them to their fashion 2015-11-15 15:09:27 +01:00
rlar 2975cc098d *.vc*proj, synchronize AdditionalIncludeDirectories
all of them shall have the visualc local "include"
   in front of "src/include"
2015-11-15 15:09:26 +01:00
rlar 74f03ff027 convert all visual studio proj and sln files to crlf line endings
perl -pi -e 's/\r*\n/\r\n/' visualc*/*.vc*proj visualc*/*.sln
2015-10-16 20:34:27 +02:00
rlar 517b36edd0 update visual stdio project files 2015-07-08 20:52:08 +02:00
dwarning 7c5f3173e2 hisimhv2: fix naming problems by MS linker 2015-03-29 11:43:30 +02:00
dwarning 010174ec2a devices/bsim4v7, add to build infrastructure 2014-06-26 19:48:15 +02:00
dwarning cba69c4850 devices/bsim4v4, remove ancient bsim4 model version 4.4 2014-06-26 19:43:54 +02:00
h_vogt 3b4d8e8069 Add project file for MS VS 2010 2014-01-25 15:23:57 +01:00