Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
e1addadb
Commit
e1addadb
authored
Feb 12, 2013
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compiler warnings on gcc 4.6.3, Debug build
parent
001afa49
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
85 additions
and
82 deletions
+85
-82
build-msw.txt
Documentation/compiling/build-msw.txt
+8
-7
minkowski.hpp
include/boost/polygon/detail/minkowski.hpp
+2
-2
printout_controler.cpp
pcbnew/printout_controler.cpp
+5
-3
clipper.cpp
polygon/clipper.cpp
+70
-70
No files found.
Documentation/compiling/build-msw.txt
View file @
e1addadb
Introduction
------------
This document details how to build KiCad from source on Windows. The current
supported method of building KiCad on Windows systems is to use MinGW/MSYS.
Other build systems such as Visual Studio and Eclipse can be used but your
mileage may vary. If you choose to build KiCad with one of the unsupported
tools, please do not expect a great deal of help from the KiCad developers
unless you want to be the person that supports the build tool. If you add
or remove any of the KiCad build dependencies, please update this document.
This document details how to build KiCad from source on Windows. The current
supported method of building KiCad on Windows systems is to use MinGW,
either from MSYS or cross compiling from Linux. Visual Studio is not
supported, and don't ask about it, it is not supported and will not be.
If you add or remove any of the KiCad build dependencies, please update this
document.
Install Build Tools
-------------------
...
...
include/boost/polygon/detail/minkowski.hpp
View file @
e1addadb
...
...
@@ -30,13 +30,13 @@ struct minkowski_offset {
static
void
convolve_two_point_sequences
(
polygon_set
&
result
,
itrT1
ab
,
itrT1
ae
,
itrT2
bb
,
itrT2
be
)
{
if
(
ab
==
ae
||
bb
==
be
)
return
;
point
first_a
=
*
ab
;
//
point first_a = *ab;
point
prev_a
=
*
ab
;
std
::
vector
<
point
>
vec
;
polygon
poly
;
++
ab
;
for
(
;
ab
!=
ae
;
++
ab
)
{
point
first_b
=
*
bb
;
//
point first_b = *bb;
point
prev_b
=
*
bb
;
itrT2
tmpb
=
bb
;
++
tmpb
;
...
...
pcbnew/printout_controler.cpp
View file @
e1addadb
...
...
@@ -319,9 +319,10 @@ void BOARD_PRINTOUT_CONTROLLER::DrawPage()
wxLogTrace
(
tracePrinting
,
wxT
(
"Logical origin: x=%d, y=%d"
),
offset
.
x
,
offset
.
y
);
#if defined(
DEBUG
)
#if defined(
wxUSE_LOG_TRACE
)
wxRect
paperRect
=
GetPaperRectPixels
();
wxLogTrace
(
tracePrinting
,
wxT
(
"Paper rectangle: left=%d, top=%d, right=%d, bottom=%d"
),
wxLogTrace
(
tracePrinting
,
wxT
(
"Paper rectangle: left=%d, top=%d, "
"right=%d, bottom=%d"
),
paperRect
.
GetLeft
(),
paperRect
.
GetTop
(),
paperRect
.
GetRight
(),
paperRect
.
GetBottom
()
);
...
...
@@ -329,7 +330,8 @@ void BOARD_PRINTOUT_CONTROLLER::DrawPage()
int
devTop
=
dc
->
LogicalToDeviceY
(
drawRect
.
GetY
()
);
int
devRight
=
dc
->
LogicalToDeviceX
(
drawRect
.
GetRight
()
);
int
devBottom
=
dc
->
LogicalToDeviceY
(
drawRect
.
GetBottom
()
);
wxLogTrace
(
tracePrinting
,
wxT
(
"Final device rectangle: left=%d, top=%d, right=%d, bottom=%d
\n
"
),
wxLogTrace
(
tracePrinting
,
wxT
(
"Final device rectangle: left=%d, top=%d, "
"right=%d, bottom=%d
\n
"
),
devLeft
,
devTop
,
devRight
,
devBottom
);
#endif
...
...
polygon/clipper.cpp
View file @
e1addadb
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment