-
Notifications
You must be signed in to change notification settings - Fork 710
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bazel): use param file for compile
* fixes issues on windows when dealing with many dependencies causing a 'command line too long' error
- Loading branch information
Showing
47 changed files
with
283 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
load("@emsdk//emscripten_toolchain:wasm_rules.bzl", "wasm_cc_binary") | ||
|
||
_TEST_TARGETS = [ | ||
"long_command_line_file01", | ||
"long_command_line_file02", | ||
"long_command_line_file03", | ||
"long_command_line_file04", | ||
"long_command_line_file05", | ||
"long_command_line_file06", | ||
"long_command_line_file07", | ||
"long_command_line_file08", | ||
"long_command_line_file09", | ||
"long_command_line_file10", | ||
"long_command_line_file11", | ||
"long_command_line_file12", | ||
"long_command_line_file13", | ||
"long_command_line_file14", | ||
"long_command_line_file15", | ||
"long_command_line_file16", | ||
"long_command_line_file17", | ||
"long_command_line_file18", | ||
"long_command_line_file19", | ||
"long_command_line_file20", | ||
] | ||
|
||
_TEST_TARGET_SUFFIXES = [ | ||
"a", | ||
"b", | ||
"c", | ||
"d", | ||
"e", | ||
"f", | ||
"g", | ||
"h", | ||
"i", | ||
"j", | ||
] | ||
|
||
[cc_library( | ||
name = "{}_{}".format(target, suffix), | ||
hdrs = ["include/{}.hh".format(target)], | ||
# stripping include prefix to create more flags passed to emcc | ||
strip_include_prefix = "include", | ||
srcs = ["{}.cc".format(target)], | ||
) for target in _TEST_TARGETS for suffix in _TEST_TARGET_SUFFIXES] | ||
|
||
cc_binary( | ||
name = "long_command_line", | ||
linkshared = True, | ||
srcs = ["long_command_line.cc"], | ||
deps = [":{}_{}".format(target, suffix) for target in _TEST_TARGETS for suffix in _TEST_TARGET_SUFFIXES], | ||
) | ||
|
||
wasm_cc_binary( | ||
name = "long_command_line_wasm", | ||
cc_target = ":long_command_line", | ||
outputs = [ | ||
"long_command_line.js", | ||
"long_command_line.wasm", | ||
], | ||
) |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file01.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f1(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file02.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f2(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file03.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f3(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file04.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f4(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file05.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f5(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file06.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f6(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file07.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f7(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file08.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f8(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file09.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f9(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file10.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f10(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file11.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f11(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file12.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f12(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file13.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f13(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file14.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f14(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file15.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f15(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file16.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f16(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file17.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f17(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file18.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f18(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file19.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f19(); |
3 changes: 3 additions & 0 deletions
3
bazel/test_external/long_command_line/include/long_command_line_file20.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void f20(); |
43 changes: 43 additions & 0 deletions
43
bazel/test_external/long_command_line/long_command_line.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#include "long_command_line_file01.hh" | ||
#include "long_command_line_file02.hh" | ||
#include "long_command_line_file03.hh" | ||
#include "long_command_line_file04.hh" | ||
#include "long_command_line_file05.hh" | ||
#include "long_command_line_file06.hh" | ||
#include "long_command_line_file07.hh" | ||
#include "long_command_line_file08.hh" | ||
#include "long_command_line_file09.hh" | ||
#include "long_command_line_file10.hh" | ||
#include "long_command_line_file11.hh" | ||
#include "long_command_line_file12.hh" | ||
#include "long_command_line_file13.hh" | ||
#include "long_command_line_file14.hh" | ||
#include "long_command_line_file15.hh" | ||
#include "long_command_line_file16.hh" | ||
#include "long_command_line_file17.hh" | ||
#include "long_command_line_file18.hh" | ||
#include "long_command_line_file19.hh" | ||
#include "long_command_line_file20.hh" | ||
|
||
int main() { | ||
f1(); | ||
f2(); | ||
f3(); | ||
f4(); | ||
f5(); | ||
f6(); | ||
f7(); | ||
f8(); | ||
f9(); | ||
f10(); | ||
f11(); | ||
f12(); | ||
f13(); | ||
f14(); | ||
f15(); | ||
f16(); | ||
f17(); | ||
f18(); | ||
f19(); | ||
/* f20(); */ | ||
} |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file01.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file01.hh" | ||
|
||
#include <iostream> | ||
|
||
void f1() { std::cout << "hello from f1()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file02.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file02.hh" | ||
|
||
#include <iostream> | ||
|
||
void f2() { std::cout << "hello from f2()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file03.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file03.hh" | ||
|
||
#include <iostream> | ||
|
||
void f3() { std::cout << "hello from f3()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file04.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file04.hh" | ||
|
||
#include <iostream> | ||
|
||
void f4() { std::cout << "hello from f4()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file05.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file05.hh" | ||
|
||
#include <iostream> | ||
|
||
void f5() { std::cout << "hello from f5()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file06.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file06.hh" | ||
|
||
#include <iostream> | ||
|
||
void f6() { std::cout << "hello from f6()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file07.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file07.hh" | ||
|
||
#include <iostream> | ||
|
||
void f7() { std::cout << "hello from f7()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file08.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file08.hh" | ||
|
||
#include <iostream> | ||
|
||
void f8() { std::cout << "hello from f8()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file09.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file09.hh" | ||
|
||
#include <iostream> | ||
|
||
void f9() { std::cout << "hello from f9()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file10.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file10.hh" | ||
|
||
#include <iostream> | ||
|
||
void f10() { std::cout << "hello from f10()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file11.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file11.hh" | ||
|
||
#include <iostream> | ||
|
||
void f11() { std::cout << "hello from f11()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file12.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file12.hh" | ||
|
||
#include <iostream> | ||
|
||
void f12() { std::cout << "hello from f12()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file13.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file13.hh" | ||
|
||
#include <iostream> | ||
|
||
void f13() { std::cout << "hello from f13()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file14.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file14.hh" | ||
|
||
#include <iostream> | ||
|
||
void f14() { std::cout << "hello from f14()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file15.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file15.hh" | ||
|
||
#include <iostream> | ||
|
||
void f15() { std::cout << "hello from f15()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file16.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file16.hh" | ||
|
||
#include <iostream> | ||
|
||
void f16() { std::cout << "hello from f16()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file17.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file17.hh" | ||
|
||
#include <iostream> | ||
|
||
void f17() { std::cout << "hello from f17()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file18.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file18.hh" | ||
|
||
#include <iostream> | ||
|
||
void f18() { std::cout << "hello from f18()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file19.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file19.hh" | ||
|
||
#include <iostream> | ||
|
||
void f19() { std::cout << "hello from f19()\n"; } |
5 changes: 5 additions & 0 deletions
5
bazel/test_external/long_command_line/long_command_line_file20.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "long_command_line_file20.hh" | ||
|
||
#include <iostream> | ||
|
||
void f20() { std::cout << "hello from f20()\n"; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters