Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfc6b7c5

Browse files
committed
Latest version of gcc from Apple does not work well with -traditional-cpp
(it rejects some system header files...). Use -no-cpp-precomp instead.I think it is okay to change this unconditionally, but if we hearcomplaints from people still using very old compilers on Darwin,we could put in a test to see which switch the compiler likes.
1 parent28847ae commitfc6b7c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/template/darwin

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#-traditional-cpp means "don't useapple's cpp-precomp" on darwin
2-
#this should change to -no-cpp-precomp when that flag is implemented
3-
CC="$CC -traditional-cpp"
1+
#Apple'scpp-precomp seems a tad broken, sodon't useit
2+
#(Note: on OS X before 10.2, you might need -traditional-cpp instead)
3+
CC="$CC -no-cpp-precomp"
44

55
# Select appropriate semaphore support
66
USE_NAMED_POSIX_SEMAPHORES=1

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp