Skip to content

Commit

Permalink
Turned off BCC15 due to segfault
Browse files Browse the repository at this point in the history
Illegal array access on line 7271 of clusters.c. God only knows what that variable should be or is doing though :\
  • Loading branch information
merrygoat committed Jan 14, 2018
1 parent b50813f commit 464b28f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The TCC uses the free open source build system _cmake_ to generate makefiles.
From a command prompt in the TCC directory execute
* `mkdir build`
* `cd build`
* `cmake .. -G "MinGW MakeFiles`
* `cmake .. -G "MinGW Makefiles`
* `mingw32-make.exe`

##### To build on other systems
Expand Down
3 changes: 2 additions & 1 deletion tcc/src/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ void Setup_InitStaticVars() { // Initialize lots of important variables for stat
dosp5=dosp5a=dosp5b=dosp5c=1;
do6Z=do7K=do8A=do8B=do8K=do9A=do9B=do9K=do10A=do10B=do10K=do10W=1;
do11A=do11B=do11C=do11E=do11F=do11W=do12A=do12B=do12D=do12E=do12K=1;
do13A=do13B=do13K=doFCC=doHCP=doBCC9=doBCC15=1;
do13A=do13B=do13K=doFCC=doHCP=doBCC9=1;
doBCC15=0;

msp3a=msp3b=msp3c=initNoStatic; // max size of **sp** arrays in dimension i
msp4a=msp4b=msp4c=m6A=initNoStatic; // max size of **sp** arrays in dimension i
Expand Down

0 comments on commit 464b28f

Please sign in to comment.